Mercurial > hg > Members > kono > nitros9-code
view level1/atari/cmds/makefile @ 2868:cfa46960b6bd
makefiles: Rename DW3 to DW all over
Rename dw3*.sb to dwio*.sb
This is part of getting default and lwtools-port branches
together, trying to avoid things falling through the
cracks.
author | Tormod Volden <debian.tormod@gmail.com> |
---|---|
date | Sun, 24 Nov 2013 11:13:40 +0100 |
parents | e4a0f58a5f9b |
children | 1addfd8c9d5f |
line wrap: on
line source
PORT = atari ifndef NITROS9DIR NITROS9DIR = $(HOME)/nitros9 endif include $(NITROS9DIR)/rules.mak vpath %.a $(LEVEL1)/cmds vpath %.asm $(LEVEL1)/cmds:$(NITROS9DIR)/3rdparty/packages/basic09 DEPENDS = ./makefile AFLAGS += -i=$(NITROS9DIR)/3rdparty/packages/basic09 LFLAGS += -l=$(NITROS9DIR)/lib/net.l -l=$(NITROS9DIR)/lib/alib.l -l=$(NITROS9DIR)/lib/sys6809l1.l BASIC09FILES = basic09.asm runb.asm gfx.asm inkey.asm syscall.asm CMDS = asm attr backup binex build calldbg cmp copy cputype \ date dcheck debug ded deiniz del deldir devs dir dirsort disasm \ display dmode dsave dump echo edit error exbin format \ free help ident iniz irqs link list load login makdir \ megaread mdir merge mfree os9gen padrom park printerr procs prompt pwd pxd \ rename save setime shellplus shell_21 sleep \ tee tmode touch tsmon tuneport unlink verify xmode\ basic09 runb gfx inkey syscall CMDS_DW = inetd telnet dw CMDS_DEMO = fuji SUBS = gfx inkey syscall ALLOBJS = $(CMDS) $(CMDS_D2) $(CMDS_DW) $(CMDS_DEMO) $(SUBS) all: $(ALLOBJS) pwd: pd.asm $(AS) $(AFLAGS) $< $(ASOUT)$@ -aPWD=1 xmode: xmode.asm $(AS) $(AFLAGS) $< $(ASOUT)$@ -aXMODE=1 tmode: xmode.asm $(AS) $(AFLAGS) $< $(ASOUT)$@ -aTMODE=1 pxd: pd.asm $(AS) $(AFLAGS) $< $(ASOUT)$@ -aPXD=1 clean: $(RM) $(ALLOBJS) identify: $(IDENT_SHORT) $(ALLOBJS) showobjs: @$(ECHO) $(CMDS) showobjs_dw: @$(ECHO) $(CMDS) $(CMDS_DW) showobjs_demo: @$(ECHO) $(CMDS_DEMO) showallobjs: @$(ECHO) $(ALLOBJS)