Mercurial > hg > Members > kono > nitros9-code
annotate makefile @ 2728:09c66281e12a lwtools-port
Fixes
author | Boisy Pitre <boisy.pitre@nuance.com> |
---|---|
date | Wed, 01 Aug 2012 19:18:46 -0500 |
parents | 05b648103e78 |
children | 1868fbf470e7 |
rev | line source |
---|---|
1363 | 1 include rules.mak |
0 | 2 |
2382 | 3 dirs = lib $(LEVEL1) $(LEVEL2) $(LEVEL3) $(3RDPARTY) |
1119
f86ef3d1d7c9
Makefiles have been redone to take advantage of size and Make features
boisy
parents:
504
diff
changeset
|
4 |
0 | 5 # Make all components |
6 all: | |
1363 | 7 @$(ECHO) "**************************************************" |
8 @$(ECHO) "* *" | |
9 @$(ECHO) "* THE NITROS-9 PROJECT *" | |
10 @$(ECHO) "* *" | |
11 @$(ECHO) "**************************************************" | |
1133 | 12 $(foreach dir, $(dirs), ($(CD) $(dir); make);) |
0 | 13 |
14 # Clean all components | |
2224 | 15 clean: |
2200 | 16 -$(RM) nitros9project.zip dsks/*.dsk |
1133 | 17 $(foreach dir, $(dirs), ($(CD) $(dir); make clean);) |
0 | 18 |
2200 | 19 # Do CVS update |
2606
23bfa8f52dd3
Updated makefile for Mercurial
Boisy Pitre <boisy.pitre@nuance.com>
parents:
2568
diff
changeset
|
20 hgupdate: |
2616 | 21 hg pull |
2606
23bfa8f52dd3
Updated makefile for Mercurial
Boisy Pitre <boisy.pitre@nuance.com>
parents:
2568
diff
changeset
|
22 hg update |
2200 | 23 |
458
aac20055f8ad
Changes for shellplus source provided by Curtis Boyle
boisy
parents:
378
diff
changeset
|
24 # Make DSK images |
1119
f86ef3d1d7c9
Makefiles have been redone to take advantage of size and Make features
boisy
parents:
504
diff
changeset
|
25 dsk: all |
1133 | 26 $(foreach dir, $(dirs), ($(CD) $(dir); make dsk);) |
332 | 27 |
2227 | 28 # Copy DSK images |
2199 | 29 dskcopy: all |
30 $(foreach dir, $(dirs), ($(CD) $(dir); make dskcopy);) | |
2512 | 31 $(MKDSKINDEX) $(DSKDIR) > $(DSKDIR)/index.html |
32 | |
2199 | 33 |
458
aac20055f8ad
Changes for shellplus source provided by Curtis Boyle
boisy
parents:
378
diff
changeset
|
34 # Clean DSK images |
aac20055f8ad
Changes for shellplus source provided by Curtis Boyle
boisy
parents:
378
diff
changeset
|
35 dskclean: |
1133 | 36 $(foreach dir, $(dirs), ($(CD) $(dir); make dskclean);) |
2190 | 37 |
2724
05b648103e78
Renamed dw3.sb to dwio.sb and rbdw3 to rbdw
Boisy Pitre <boisy.pitre@nuance.com>
parents:
2616
diff
changeset
|
38 # DriveWire DSK images |
05b648103e78
Renamed dw3.sb to dwio.sb and rbdw3 to rbdw
Boisy Pitre <boisy.pitre@nuance.com>
parents:
2616
diff
changeset
|
39 dwdsk = $(LEVEL1)/coco/nos96809l1coco1_dw.dsk $(LEVEL1)/coco/nos96809l1coco2_dw.dsk \ |
05b648103e78
Renamed dw3.sb to dwio.sb and rbdw3 to rbdw
Boisy Pitre <boisy.pitre@nuance.com>
parents:
2616
diff
changeset
|
40 $(LEVEL2)/coco3/nos96809l2_dw.dsk $(LEVEL2)/coco3_6309/nos96309l2_dw.dsk |
2191 | 41 |
2724
05b648103e78
Renamed dw3.sb to dwio.sb and rbdw3 to rbdw
Boisy Pitre <boisy.pitre@nuance.com>
parents:
2616
diff
changeset
|
42 dw: |
05b648103e78
Renamed dw3.sb to dwio.sb and rbdw3 to rbdw
Boisy Pitre <boisy.pitre@nuance.com>
parents:
2616
diff
changeset
|
43 $(ARCHIVE) nitros9_drivewire.zip $(dwdsk) |
2199 | 44 |
2216 | 45 info: |
46 @$(foreach dir, $(dirs), ($(CD) $(dir); make info);) | |
47 | |
2606
23bfa8f52dd3
Updated makefile for Mercurial
Boisy Pitre <boisy.pitre@nuance.com>
parents:
2568
diff
changeset
|
48 nightly: clean hgupdate dskcopy |
2216 | 49 make info>dsks/ReadMe |
2200 | 50 $(ARCHIVE) nitros9project dsks/* |
2214 | 51 scp nitros9project.zip boisy,nitros9@web.sourceforge.net:/home/groups/n/ni/nitros9/htdocs |
2568 | 52 ssh boisy,nitros9@shell.sourceforge.net create |
53 ssh boisy,nitros9@shell.sourceforge.net "./burst" |