annotate level1/coco/cmds/makefile @ 2668:07441dfebc27 lwtools-port

Make tocgen build with lwasm lwasm does not treat a trailing colon as part of the symbol name. Removed trailing colons on symbol references.
author William Astle <lost@l-w.ca>
date Sun, 10 Jun 2012 13:35:44 -0600
parents 09feb97c181f
children 53c42701f680
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2037
2e37b5a0d4b3 set PORT var
boisy
parents: 2034
diff changeset
1 PORT = coco
2034
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
2 include $(NITROS9DIR)/rules.mak
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
3
2475
c249cc490a83 Moved dw commands into main tree
boisy
parents: 2294
diff changeset
4 vpath %.a $(LEVEL1)/cmds
2105
d5824ed9c767 Makefile now makes basic09/runb stuff, copies to disk 2 for 40TDS
boisy
parents: 2049
diff changeset
5 vpath %.asm $(LEVEL1)/cmds:$(NITROS9DIR)/3rdparty/packages/basic09
2034
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
6
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
7 DEPENDS = ./makefile
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
8
2664
09feb97c181f Initial changes to use lwasm instead of mamou
William Astle <lost@l-w.ca>
parents: 2483
diff changeset
9 AFLAGS += --includedir=$(NITROS9DIR)/3rdparty/packages/basic09
2475
c249cc490a83 Moved dw commands into main tree
boisy
parents: 2294
diff changeset
10 LFLAGS += -l=$(NITROS9DIR)/lib/net.l -l=$(NITROS9DIR)/lib/alib.l -l=$(NITROS9DIR)/lib/sys6809l1.l
2105
d5824ed9c767 Makefile now makes basic09/runb stuff, copies to disk 2 for 40TDS
boisy
parents: 2049
diff changeset
11
d5824ed9c767 Makefile now makes basic09/runb stuff, copies to disk 2 for 40TDS
boisy
parents: 2049
diff changeset
12 BASIC09FILES = basic09.asm runb.asm gfx.asm inkey.asm syscall.asm
2186
f2f1920e10e8 Updates
boisy
parents: 2159
diff changeset
13 CMDS = asm attr backup binex build calldbg cmp cobbler copy cputype \
2034
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
14 date dcheck debug ded deiniz del deldir devs dir dirsort disasm \
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
15 display dmode dsave dump echo edit error exbin format \
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
16 free grfdrv help ident iniz irqs link list load login makdir \
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
17 megaread mdir merge mfree mpi os9gen padrom park printerr procs prompt pwd pxd \
2105
d5824ed9c767 Makefile now makes basic09/runb stuff, copies to disk 2 for 40TDS
boisy
parents: 2049
diff changeset
18 rename save setime shellplus shell_21 sleep \
2243
cacf283930e6 Fixed makefiles so that DriveWire commands only get copied to DriveWire bootable disks.
boisy
parents: 2242
diff changeset
19 tee tmode touch tsmon tuneport unlink verify xmode
2034
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
20
2159
f8dcc9cc7f51 Added support commands to disk 2
boisy
parents: 2149
diff changeset
21 CMDS_D2 = basic09 runb gfx inkey syscall copy del echo format \
f8dcc9cc7f51 Added support commands to disk 2
boisy
parents: 2149
diff changeset
22 merge os9gen prompt tmode
2034
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
23
2475
c249cc490a83 Moved dw commands into main tree
boisy
parents: 2294
diff changeset
24 CMDS_DW = inetd telnet dw
c249cc490a83 Moved dw commands into main tree
boisy
parents: 2294
diff changeset
25
2034
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
26 SUBS = gfx inkey syscall
2243
cacf283930e6 Fixed makefiles so that DriveWire commands only get copied to DriveWire bootable disks.
boisy
parents: 2242
diff changeset
27 ALLOBJS = $(CMDS) $(CMDS_D2) $(CMDS_DW) $(SUBS)
2034
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
28
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
29 all: $(ALLOBJS)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
30
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
31 pwd: pd.asm
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
32 $(AS) $(AFLAGS) $< $(ASOUT)$@ -aPWD=1
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
33
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
34 xmode: xmode.asm
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
35 $(AS) $(AFLAGS) $< $(ASOUT)$@ -aXMODE=1
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
36
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
37 tmode: xmode.asm
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
38 $(AS) $(AFLAGS) $< $(ASOUT)$@ -aTMODE=1
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
39
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
40 pxd: pd.asm
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
41 $(AS) $(AFLAGS) $< $(ASOUT)$@ -aPXD=1
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
42
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
43 clean:
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
44 $(RM) $(ALLOBJS)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
45
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
46 identify:
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
47 $(IDENT_SHORT) $(ALLOBJS)
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
48
2105
d5824ed9c767 Makefile now makes basic09/runb stuff, copies to disk 2 for 40TDS
boisy
parents: 2049
diff changeset
49 showobjs:
d5824ed9c767 Makefile now makes basic09/runb stuff, copies to disk 2 for 40TDS
boisy
parents: 2049
diff changeset
50 @$(ECHO) $(CMDS)
d5824ed9c767 Makefile now makes basic09/runb stuff, copies to disk 2 for 40TDS
boisy
parents: 2049
diff changeset
51
d5824ed9c767 Makefile now makes basic09/runb stuff, copies to disk 2 for 40TDS
boisy
parents: 2049
diff changeset
52 showobjs_d2:
d5824ed9c767 Makefile now makes basic09/runb stuff, copies to disk 2 for 40TDS
boisy
parents: 2049
diff changeset
53 @$(ECHO) $(CMDS_D2)
d5824ed9c767 Makefile now makes basic09/runb stuff, copies to disk 2 for 40TDS
boisy
parents: 2049
diff changeset
54
2483
a98d02878bdd more makefile fixes for drivewire
boisy
parents: 2475
diff changeset
55 showobjs_dw:
a98d02878bdd more makefile fixes for drivewire
boisy
parents: 2475
diff changeset
56 @$(ECHO) $(CMDS) $(CMDS_DW)
a98d02878bdd more makefile fixes for drivewire
boisy
parents: 2475
diff changeset
57
2034
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
58 showallobjs:
817fd1563b56 Addition of coco port
boisy
parents:
diff changeset
59 @$(ECHO) $(ALLOBJS)