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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2349
f506d1905781 Added Level 3
boisy
parents:
diff changeset
1 PORT = coco3
f506d1905781 Added Level 3
boisy
parents:
diff changeset
2 include $(NITROS9DIR)/rules.mak
f506d1905781 Added Level 3
boisy
parents:
diff changeset
3
f506d1905781 Added Level 3
boisy
parents:
diff changeset
4 DEPENDS = ./makefile
f506d1905781 Added Level 3
boisy
parents:
diff changeset
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
f506d1905781 Added Level 3
boisy
parents:
diff changeset
7 PERMDEFS = Defsfile
f506d1905781 Added Level 3
boisy
parents:
diff changeset
8 DEFS = OS9Defs RBFDefs SCFDefs SysType VTIODefs
f506d1905781 Added Level 3
boisy
parents:
diff changeset
9 ALLOBJS = $(DEFS) $(PERMDEFS)
f506d1905781 Added Level 3
boisy
parents:
diff changeset
10
f506d1905781 Added Level 3
boisy
parents:
diff changeset
11 all: $(ALLOBJS)
f506d1905781 Added Level 3
boisy
parents:
diff changeset
12
f506d1905781 Added Level 3
boisy
parents:
diff changeset
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
f506d1905781 Added Level 3
boisy
parents:
diff changeset
15
f506d1905781 Added Level 3
boisy
parents:
diff changeset
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
f506d1905781 Added Level 3
boisy
parents:
diff changeset
18
f506d1905781 Added Level 3
boisy
parents:
diff changeset
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
f506d1905781 Added Level 3
boisy
parents:
diff changeset
21
f506d1905781 Added Level 3
boisy
parents:
diff changeset
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
f506d1905781 Added Level 3
boisy
parents:
diff changeset
24
f506d1905781 Added Level 3
boisy
parents:
diff changeset
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
f506d1905781 Added Level 3
boisy
parents:
diff changeset
27
f506d1905781 Added Level 3
boisy
parents:
diff changeset
28 clean:
f506d1905781 Added Level 3
boisy
parents:
diff changeset
29 $(RM) $(DEFS)
f506d1905781 Added Level 3
boisy
parents:
diff changeset
30
f506d1905781 Added Level 3
boisy
parents:
diff changeset
31 showobjs:
f506d1905781 Added Level 3
boisy
parents:
diff changeset
32 @$(ECHO) $(ALLOBJS)