annotate 3rdparty/utils/smartwatch/makefile @ 2814:dd5499bc4bdd lwtools-port

Updated makefile(s) to create disk images and info for 3rdparty/utils/ Updated makefile(s) for boisy/, dasm/, dladd/, smartwatch/, supercomm/, & winfo/ that are located in the 3rdparty/utils/ area. The update includes creating a disk image for each with those commands in them. Also added a info section to each of those makefile(s) and the makefile in 3rdparty/utils/ as that makefile did not have a info section.
author David Ladd <drencor-xeen@users.sf.net>
date Tue, 12 Feb 2013 13:50:55 -0600
parents 174d263c0995
children c1892376e7a7
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1407
174d263c0995 Fixed certain inconsistencies in makefiles
boisy
parents: 1366
diff changeset
1 include ../../../rules.mak
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
2
1407
174d263c0995 Fixed certain inconsistencies in makefiles
boisy
parents: 1366
diff changeset
3 DEPENDS = ./makefile
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
4
221
5a27279ccc08 Added new utils
boisy
parents: 0
diff changeset
5 CMDS = getclk swread swset
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
6
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
7 ALLOBJS = $(CMDS)
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
8
2814
dd5499bc4bdd Updated makefile(s) to create disk images and info for 3rdparty/utils/
David Ladd <drencor-xeen@users.sf.net>
parents: 1407
diff changeset
9 DSKSMARTWATCH = smartwatch.dsk
dd5499bc4bdd Updated makefile(s) to create disk images and info for 3rdparty/utils/
David Ladd <drencor-xeen@users.sf.net>
parents: 1407
diff changeset
10
dd5499bc4bdd Updated makefile(s) to create disk images and info for 3rdparty/utils/
David Ladd <drencor-xeen@users.sf.net>
parents: 1407
diff changeset
11 DSKS = $(DSKSMARTWATCH)
dd5499bc4bdd Updated makefile(s) to create disk images and info for 3rdparty/utils/
David Ladd <drencor-xeen@users.sf.net>
parents: 1407
diff changeset
12
1407
174d263c0995 Fixed certain inconsistencies in makefiles
boisy
parents: 1366
diff changeset
13 all: banner $(ALLOBJS) $(DEPENDS)
174d263c0995 Fixed certain inconsistencies in makefiles
boisy
parents: 1366
diff changeset
14
174d263c0995 Fixed certain inconsistencies in makefiles
boisy
parents: 1366
diff changeset
15 banner:
1366
770c350f4c15 More changes
boisy
parents: 221
diff changeset
16 @$(ECHO) "**************************************************"
770c350f4c15 More changes
boisy
parents: 221
diff changeset
17 @$(ECHO) "* *"
770c350f4c15 More changes
boisy
parents: 221
diff changeset
18 @$(ECHO) "* SmartWatch Utilities *"
770c350f4c15 More changes
boisy
parents: 221
diff changeset
19 @$(ECHO) "* *"
770c350f4c15 More changes
boisy
parents: 221
diff changeset
20 @$(ECHO) "**************************************************"
2814
dd5499bc4bdd Updated makefile(s) to create disk images and info for 3rdparty/utils/
David Ladd <drencor-xeen@users.sf.net>
parents: 1407
diff changeset
21
dd5499bc4bdd Updated makefile(s) to create disk images and info for 3rdparty/utils/
David Ladd <drencor-xeen@users.sf.net>
parents: 1407
diff changeset
22 $(DSKSMARTWATCH): $(CMDS)
dd5499bc4bdd Updated makefile(s) to create disk images and info for 3rdparty/utils/
David Ladd <drencor-xeen@users.sf.net>
parents: 1407
diff changeset
23 -$(RM) $@
dd5499bc4bdd Updated makefile(s) to create disk images and info for 3rdparty/utils/
David Ladd <drencor-xeen@users.sf.net>
parents: 1407
diff changeset
24 $(OS9FORMAT) $@
dd5499bc4bdd Updated makefile(s) to create disk images and info for 3rdparty/utils/
David Ladd <drencor-xeen@users.sf.net>
parents: 1407
diff changeset
25 $(MAKDIR) $@,CMDS
dd5499bc4bdd Updated makefile(s) to create disk images and info for 3rdparty/utils/
David Ladd <drencor-xeen@users.sf.net>
parents: 1407
diff changeset
26 $(CP) $(CMDS) $@,CMDS
dd5499bc4bdd Updated makefile(s) to create disk images and info for 3rdparty/utils/
David Ladd <drencor-xeen@users.sf.net>
parents: 1407
diff changeset
27 $(foreach file, $(CMDS), $(OS9ATTR_EXEC) $@,CMDS/$(file);)
dd5499bc4bdd Updated makefile(s) to create disk images and info for 3rdparty/utils/
David Ladd <drencor-xeen@users.sf.net>
parents: 1407
diff changeset
28
dd5499bc4bdd Updated makefile(s) to create disk images and info for 3rdparty/utils/
David Ladd <drencor-xeen@users.sf.net>
parents: 1407
diff changeset
29 dsk: all $(DSKS)
dd5499bc4bdd Updated makefile(s) to create disk images and info for 3rdparty/utils/
David Ladd <drencor-xeen@users.sf.net>
parents: 1407
diff changeset
30
dd5499bc4bdd Updated makefile(s) to create disk images and info for 3rdparty/utils/
David Ladd <drencor-xeen@users.sf.net>
parents: 1407
diff changeset
31 dskcopy: dsk
dd5499bc4bdd Updated makefile(s) to create disk images and info for 3rdparty/utils/
David Ladd <drencor-xeen@users.sf.net>
parents: 1407
diff changeset
32 $(CP) $(DSKS) $(DSKDIR)
dd5499bc4bdd Updated makefile(s) to create disk images and info for 3rdparty/utils/
David Ladd <drencor-xeen@users.sf.net>
parents: 1407
diff changeset
33
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
34 clean:
2814
dd5499bc4bdd Updated makefile(s) to create disk images and info for 3rdparty/utils/
David Ladd <drencor-xeen@users.sf.net>
parents: 1407
diff changeset
35 $(RM) $(ALLOBJS) $(DSKS)
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
36
2814
dd5499bc4bdd Updated makefile(s) to create disk images and info for 3rdparty/utils/
David Ladd <drencor-xeen@users.sf.net>
parents: 1407
diff changeset
37 info:
dd5499bc4bdd Updated makefile(s) to create disk images and info for 3rdparty/utils/
David Ladd <drencor-xeen@users.sf.net>
parents: 1407
diff changeset
38 @echo "*** SmartWatch Utilities ***"
dd5499bc4bdd Updated makefile(s) to create disk images and info for 3rdparty/utils/
David Ladd <drencor-xeen@users.sf.net>
parents: 1407
diff changeset
39 @$(foreach dsk, $(DSKS), $(ECHO) $(dsk);)
dd5499bc4bdd Updated makefile(s) to create disk images and info for 3rdparty/utils/
David Ladd <drencor-xeen@users.sf.net>
parents: 1407
diff changeset
40
dd5499bc4bdd Updated makefile(s) to create disk images and info for 3rdparty/utils/
David Ladd <drencor-xeen@users.sf.net>
parents: 1407
diff changeset
41