Mercurial > hg > Members > kono > nitros9-code
diff level1/coco/cmds/makefile @ 2243:cacf283930e6
Fixed makefiles so that DriveWire commands only get copied to DriveWire bootable disks.
author | boisy |
---|---|
date | Thu, 24 Dec 2009 01:30:09 +0000 |
parents | 2a889a511f0a |
children | 82cc48b84835 |
line wrap: on
line diff
--- a/level1/coco/cmds/makefile Thu Dec 24 01:16:31 2009 +0000 +++ b/level1/coco/cmds/makefile Thu Dec 24 01:30:09 2009 +0000 @@ -14,14 +14,15 @@ free grfdrv help ident iniz irqs link list load login makdir \ megaread mdir merge mfree mpi os9gen padrom park printerr procs prompt pwd pxd \ rename save setime shellplus shell_21 sleep \ - tee tmode touch tsmon tuneport unlink verify xmode \ - dw ftp wget + tee tmode touch tsmon tuneport unlink verify xmode CMDS_D2 = basic09 runb gfx inkey syscall copy del echo format \ merge os9gen prompt tmode +CMDS_DW = dw ftp wget + SUBS = gfx inkey syscall -ALLOBJS = $(CMDS) $(CMDS_D2) $(SUBS) +ALLOBJS = $(CMDS) $(CMDS_D2) $(CMDS_DW) $(SUBS) all: $(ALLOBJS) @@ -49,5 +50,8 @@ showobjs_d2: @$(ECHO) $(CMDS_D2) +showobjs_dw: + @$(ECHO) $(CMDS_DW) + showallobjs: @$(ECHO) $(ALLOBJS)