Mercurial > hg > Members > kono > nitros9-code
annotate level3/coco3/defs/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 | 2a37d4530972 1addfd8c9d5f |
children | 56f26b87fa8a |
rev | line source |
---|---|
2349 | 1 PORT = coco3 |
2 include $(NITROS9DIR)/rules.mak | |
3 | |
4 DEPENDS = ./makefile | |
5 | |
2684
2a37d4530972
Even more command line fixups for lwasm
William Astle <lost@l-w.ca>
parents:
2349
diff
changeset
|
6 DEFOPTS = --preprocess -DLevel=3 |
2349 | 7 PERMDEFS = Defsfile |
8 DEFS = OS9Defs RBFDefs SCFDefs SysType VTIODefs | |
9 ALLOBJS = $(DEFS) $(PERMDEFS) | |
10 | |
11 all: $(ALLOBJS) | |
12 | |
13 OS9Defs: $(DEFSDIR)/os9defs | |
2684
2a37d4530972
Even more command line fixups for lwasm
William Astle <lost@l-w.ca>
parents:
2349
diff
changeset
|
14 $(AS) $(AFLAGS) $(DEFOPTS) -DOS9DEFS=0 $< > $@ |
2349 | 15 |
16 RBFDefs: $(DEFSDIR)/rbfdefs | |
2684
2a37d4530972
Even more command line fixups for lwasm
William Astle <lost@l-w.ca>
parents:
2349
diff
changeset
|
17 $(AS) $(AFLAGS) $(DEFOPTS) -DRBFDEFS=0 $< > $@ |
2349 | 18 |
19 SCFDefs: $(DEFSDIR)/scfdefs | |
2684
2a37d4530972
Even more command line fixups for lwasm
William Astle <lost@l-w.ca>
parents:
2349
diff
changeset
|
20 $(AS) $(AFLAGS) $(DEFOPTS) -DSCFDEFS=0 $< > $@ |
2349 | 21 |
22 SysType: $(DEFSDIR)/systype | |
2684
2a37d4530972
Even more command line fixups for lwasm
William Astle <lost@l-w.ca>
parents:
2349
diff
changeset
|
23 $(AS) $(AFLAGS) $(DEFOPTS) -DSYSTYPE=0 $< > $@ |
2349 | 24 |
25 VTIODefs: $(DEFSDIR)/vtiodefs_cc3 | |
2684
2a37d4530972
Even more command line fixups for lwasm
William Astle <lost@l-w.ca>
parents:
2349
diff
changeset
|
26 $(AS) $(AFLAGS) $(DEFOPTS) -DVTIODEFS=0 $< > $@ |
2349 | 27 |
28 clean: | |
29 $(RM) $(DEFS) | |
30 | |
31 showobjs: | |
32 @$(ECHO) $(ALLOBJS) |