annotate 3rdparty/packages/multivue/makefile @ 1366:770c350f4c15

More changes
author boisy
date Fri, 26 Sep 2003 12:43:30 +0000
parents 53c50c807d55
children 0aa81866992a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1363
53c50c807d55 Major move to new NitrOS-9 project
boisy
parents: 1126
diff changeset
1 include ../../../rules.mak
444
5f067b794d38 Added necessary Makefiles
boisy
parents:
diff changeset
2
447
cdee01afb5d5 Changed target name
boisy
parents: 444
diff changeset
3 DISK = multivue.dsk
1363
53c50c807d55 Major move to new NitrOS-9 project
boisy
parents: 1126
diff changeset
4 CMDS = $(shell $(CD) cmds; make showobjs)
53c50c807d55 Major move to new NitrOS-9 project
boisy
parents: 1126
diff changeset
5 ICONS = $(shell $(CD) cmds/icons; make showobjs)
53c50c807d55 Major move to new NitrOS-9 project
boisy
parents: 1126
diff changeset
6 SYSBIN = $(shell $(CD) sys; make showbinobjs)
53c50c807d55 Major move to new NitrOS-9 project
boisy
parents: 1126
diff changeset
7 SYSTEXT = $(shell $(CD) sys; make showtextobjs)
53c50c807d55 Major move to new NitrOS-9 project
boisy
parents: 1126
diff changeset
8 DEMO = $(shell $(CD) demo; make showobjs)
447
cdee01afb5d5 Changed target name
boisy
parents: 444
diff changeset
9
444
5f067b794d38 Added necessary Makefiles
boisy
parents:
diff changeset
10 # Make all components
5f067b794d38 Added necessary Makefiles
boisy
parents:
diff changeset
11 all:
1366
770c350f4c15 More changes
boisy
parents: 1363
diff changeset
12 @$(ECHO) "**************************************************"
770c350f4c15 More changes
boisy
parents: 1363
diff changeset
13 @$(ECHO) "* *"
770c350f4c15 More changes
boisy
parents: 1363
diff changeset
14 @$(ECHO) "* Multi-Vue *"
770c350f4c15 More changes
boisy
parents: 1363
diff changeset
15 @$(ECHO) "* *"
770c350f4c15 More changes
boisy
parents: 1363
diff changeset
16 @$(ECHO) "**************************************************"
1363
53c50c807d55 Major move to new NitrOS-9 project
boisy
parents: 1126
diff changeset
17 $(CD) cmds; make
53c50c807d55 Major move to new NitrOS-9 project
boisy
parents: 1126
diff changeset
18 $(CD) sys; make
53c50c807d55 Major move to new NitrOS-9 project
boisy
parents: 1126
diff changeset
19 $(CD) demo; make
444
5f067b794d38 Added necessary Makefiles
boisy
parents:
diff changeset
20
5f067b794d38 Added necessary Makefiles
boisy
parents:
diff changeset
21 # Clean all components
457
1fa3b4191290 Fixed makefile slightly
boisy
parents: 451
diff changeset
22 clean: dskclean
1363
53c50c807d55 Major move to new NitrOS-9 project
boisy
parents: 1126
diff changeset
23 -$(CD) cmds; make clean
53c50c807d55 Major move to new NitrOS-9 project
boisy
parents: 1126
diff changeset
24 -$(CD) sys; make clean
53c50c807d55 Major move to new NitrOS-9 project
boisy
parents: 1126
diff changeset
25 -$(CD) demo; make clean
447
cdee01afb5d5 Changed target name
boisy
parents: 444
diff changeset
26
457
1fa3b4191290 Fixed makefile slightly
boisy
parents: 451
diff changeset
27 dsk: all
447
cdee01afb5d5 Changed target name
boisy
parents: 444
diff changeset
28 $(RM) $(DISK)
960
ea69ed12af12 Added OS9FORMAT macros which inherently specify the disk format, so that
boisy
parents: 898
diff changeset
29 $(OS9FORMAT_SS35) $(DISK) -n"Multi-Vue"
558
0ff357df35c5 Modified : to ,
boisy
parents: 457
diff changeset
30 $(MAKDIR) $(DISK),CMDS
0ff357df35c5 Modified : to ,
boisy
parents: 457
diff changeset
31 $(MAKDIR) $(DISK),CMDS/ICONS
0ff357df35c5 Modified : to ,
boisy
parents: 457
diff changeset
32 $(MAKDIR) $(DISK),SYS
0ff357df35c5 Modified : to ,
boisy
parents: 457
diff changeset
33 $(MAKDIR) $(DISK),DEMO
1363
53c50c807d55 Major move to new NitrOS-9 project
boisy
parents: 1126
diff changeset
34 $(CD) cmds; $(CP) $(CMDS) ../$(DISK),CMDS
1126
85eed1cde1b7 attr used throughout the makefiles now
boisy
parents: 1121
diff changeset
35 $(foreach file, $(CMDS), $(OS9ATTR_EXEC) $(DISK),CMDS/$(file);)
1363
53c50c807d55 Major move to new NitrOS-9 project
boisy
parents: 1126
diff changeset
36 $(CD) cmds/icons; $(CP) $(ICONS) ../../$(DISK),CMDS/ICONS
1126
85eed1cde1b7 attr used throughout the makefiles now
boisy
parents: 1121
diff changeset
37 $(foreach file, $(ICONS), $(OS9ATTR_EXEC) $(DISK),CMDS/ICONS/$(file);)
1363
53c50c807d55 Major move to new NitrOS-9 project
boisy
parents: 1126
diff changeset
38 $(CD) sys; $(CP) $(SYSBIN) ../$(DISK),SYS
1126
85eed1cde1b7 attr used throughout the makefiles now
boisy
parents: 1121
diff changeset
39 $(foreach file, $(SYSBIN), $(OS9ATTR_TEXT) $(DISK),SYS/$(file);)
1363
53c50c807d55 Major move to new NitrOS-9 project
boisy
parents: 1126
diff changeset
40 $(CD) sys; $(CPL) $(SYSTEXT) ../$(DISK),SYS
1126
85eed1cde1b7 attr used throughout the makefiles now
boisy
parents: 1121
diff changeset
41 $(foreach file, $(SYSTEXT), $(OS9ATTR_TEXT) $(DISK),SYS/$(file);)
1363
53c50c807d55 Major move to new NitrOS-9 project
boisy
parents: 1126
diff changeset
42 $(CD) demo; $(CPL) $(DEMO) ../$(DISK),DEMO
1126
85eed1cde1b7 attr used throughout the makefiles now
boisy
parents: 1121
diff changeset
43 $(foreach file, $(DEMO), $(OS9ATTR_TEXT) $(DISK),DEMO/$(file);)
457
1fa3b4191290 Fixed makefile slightly
boisy
parents: 451
diff changeset
44
1121
6a058c03adb1 More Makefile changes
boisy
parents: 960
diff changeset
45 dskcopy: dsk
6a058c03adb1 More Makefile changes
boisy
parents: 960
diff changeset
46 $(CP) $(DISK) $(DSKDIR)
6a058c03adb1 More Makefile changes
boisy
parents: 960
diff changeset
47
457
1fa3b4191290 Fixed makefile slightly
boisy
parents: 451
diff changeset
48 dskclean:
1121
6a058c03adb1 More Makefile changes
boisy
parents: 960
diff changeset
49 $(RM) $(DISK)
457
1fa3b4191290 Fixed makefile slightly
boisy
parents: 451
diff changeset
50