Mercurial > hg > Members > kono > nitros9-code
annotate level2/makefile @ 2898:28ed72477814 lwtools-port
Dummy merge of default branch into lwtools
hg -y merge --tool=internal:fail default
hg revert --all --no-backup --rev .
hg resolve -a -m
This dummy merge discards any changes from the default branch
so that the result is the same as what lwtools already had.
When merging back to default branch later, the discarded
changes will be discarded there also, so the result
will be that the default branch will contain what
the lwtools branch had before these merges.
Only scripts/burst was "rescued" from default branch.
author | Tormod Volden <debian.tormod@gmail.com> |
---|---|
date | Sat, 11 Jan 2014 18:40:44 +0100 |
parents | bd286ab169c7 1addfd8c9d5f |
children | 14b4f2791bb3 |
rev | line source |
---|---|
2046 | 1 include $(NITROS9DIR)/rules.mak |
455 | 2 |
2059 | 3 dirs = coco3 coco3_6309 |
341 | 4 |
0 | 5 # Make all components |
6 all: | |
1363 | 7 @$(ECHO) "**************************************************" |
8 @$(ECHO) "* *" | |
2046 | 9 @$(ECHO) "* NitrOS-9 Level 2 Ports *" |
1363 | 10 @$(ECHO) "* *" |
11 @$(ECHO) "**************************************************" | |
2046 | 12 $(foreach dir, $(dirs), ($(CD) $(dir); make);) |
0 | 13 |
14 # Clean all components | |
2224 | 15 clean: |
2046 | 16 $(foreach dir, $(dirs), ($(CD) $(dir); make clean);) |
1705 | 17 |
2046 | 18 # Make DSK images |
19 dsk: | |
20 $(foreach dir, $(dirs), ($(CD) $(dir); make dsk);) | |
1126 | 21 |
2199 | 22 # Copy DSK images |
23 dskcopy: | |
24 $(foreach dir, $(dirs), ($(CD) $(dir); make dskcopy);) | |
25 | |
2046 | 26 # Clean DSK images |
27 dskclean: | |
28 $(foreach dir, $(dirs), ($(CD) $(dir); make dskclean);) | |
2216 | 29 |
30 # Info | |
31 info: | |
2861
bd286ab169c7
Makefiles: Make make info prettier for dsks/ReadMe
Tormod Volden <debian.tormod@gmail.com>
parents:
2224
diff
changeset
|
32 @$(foreach dir, $(dirs), $(MAKE) -C $(dir) info; $(ECHO);) |