annotate level3/coco3_6309/defs/makefile @ 2684:2a37d4530972 lwtools-port

Even more command line fixups for lwasm
author William Astle <lost@l-w.ca>
date Sun, 10 Jun 2012 18:38:22 -0600
parents 87b07a1be8a0
children 28ed72477814
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2351
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
1 PORT = coco3
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
2 include $(NITROS9DIR)/rules.mak
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
3
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
4 DEPENDS = ./makefile
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
5
2684
2a37d4530972 Even more command line fixups for lwasm
William Astle <lost@l-w.ca>
parents: 2351
diff changeset
6 DEFOPTS = --preprocess -DLevel=3
2351
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
7 PERMDEFS = Defsfile
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
8 DEFS = OS9Defs RBFDefs SCFDefs SysType VTIODefs
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
9 ALLOBJS = $(DEFS) $(PERMDEFS)
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
10
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
11 all: $(ALLOBJS)
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
12
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
13 OS9Defs: $(DEFSDIR)/os9defs
2684
2a37d4530972 Even more command line fixups for lwasm
William Astle <lost@l-w.ca>
parents: 2351
diff changeset
14 $(AS) $(AFLAGS) $(DEFOPTS) -DOS9DEFS=0 $< > $@
2351
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
15
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
16 RBFDefs: $(DEFSDIR)/rbfdefs
2684
2a37d4530972 Even more command line fixups for lwasm
William Astle <lost@l-w.ca>
parents: 2351
diff changeset
17 $(AS) $(AFLAGS) $(DEFOPTS) -DRBFDEFS=0 $< > $@
2351
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
18
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
19 SCFDefs: $(DEFSDIR)/scfdefs
2684
2a37d4530972 Even more command line fixups for lwasm
William Astle <lost@l-w.ca>
parents: 2351
diff changeset
20 $(AS) $(AFLAGS) $(DEFOPTS) -DSCFDEFS=0 $< > $@
2351
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
21
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
22 SysType: $(DEFSDIR)/systype
2684
2a37d4530972 Even more command line fixups for lwasm
William Astle <lost@l-w.ca>
parents: 2351
diff changeset
23 $(AS) $(AFLAGS) $(DEFOPTS) -DSYSTYPE=0 $< > $@
2351
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
24
87b07a1be8a0 Updated and added coco3_6309
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: 2351
diff changeset
26 $(AS) $(AFLAGS) $(DEFOPTS) -DVTIODEFS=0 $< > $@
2351
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
27
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
28 clean:
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
29 $(RM) $(DEFS)
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
30
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
31 showobjs:
87b07a1be8a0 Updated and added coco3_6309
boisy
parents:
diff changeset
32 @$(ECHO) $(ALLOBJS)