Mercurial > hg > Members > kono > nitros9-code
view rules.mak @ 502:e81cac091c79
Added OS9RENAME macro
author | boisy |
---|---|
date | Thu, 10 Oct 2002 01:28:04 +0000 |
parents | 5f44464f7a4b |
children | 33f12fe91048 |
line wrap: on
line source
# Rules for making OS-9/6X09 modules # These macros should change according to where the base directory of the # OS-9 source tree is located BASEDIR = $(HOME)/os9 OS9TOOLSDIR = $(HOME)/bin DEFDIR = $(BASEDIR)/defs #################### DO NOT CHANGE ANYTHING BELOW THIS LINE #################### # If we're using the OS-9 emulator and the *real* OS-9 assembler, # uncomment the following two lines. #AS = os9 /mnt2/src/ocem/os9/asm #ASOUT = o= # Use the cross assembler AS = $(OS9TOOLSDIR)/os9asm -i=$(DEFDIR) ASOUT = -o= AFLAGS = -q # Commands MAKDIR = $(OS9TOOLSDIR)/os9makdir RM = rm -f MERGE = cat ECHO = echo CD = cd CP = $(OS9TOOLSDIR)/os9copy TAR = tar CHMOD = chmod IDENT = $(OS9TOOLSDIR)/os9ident IDENT_SHORT = $(IDENT) -s UNIX2OS9 = $(OS9TOOLSDIR)/u2o OS92UNIX = $(OS9TOOLSDIR)/o2u OS9FORMAT = $(OS9TOOLSDIR)/os9format OS9GEN = $(OS9TOOLSDIR)/os9gen OS9RENAME = $(OS9TOOLSDIR)/os9rename PADROM = $(OS9TOOLSDIR)/os9padrom MOUNT = sudo mount UMOUNT = sudo umount LOREMOVE = sudo /sbin/losetup -d LOSETUP = sudo /sbin/losetup LINK = ln SOFTLINK = $(LINK) -s ZIP = zip -D # Directories 3RDPARTY = $(BASEDIR)/3rdparty LEVEL1 = $(BASEDIR)/level1 LEVEL2 = $(BASEDIR)/level2v3 NLEVEL2 = $(BASEDIR)/nitros # File managers %.mn: %.asm $(AS) $(AFLAGS) $< $(ASOUT)$@ # Device drivers %.dr: %.asm $(AS) $(AFLAGS) $< $(ASOUT)$@ # Device descriptors %.dd: %.asm $(AS) $(AFLAGS) $< $(ASOUT)$@ # Window device descriptors %.dw: %.asm $(AS) $(AFLAGS) $< $(ASOUT)$@ # Terminal device descriptors %.dt: %.asm $(AS) $(AFLAGS) $< $(ASOUT)$@ # I/O subroutines %.io: %.asm $(AS) $(AFLAGS) $< $(ASOUT)$@ # 60Hz clocks %.60hz: %.asm $(AS) -aTPS=60 $(AFLAGS) $< $(ASOUT)$@ # 50Hz clocks %.50hz: %.asm $(AS) -aTPS=50 $(AFLAGS) $< $(ASOUT)$@ # All other modules %: %.asm $(AS) $(AFLAGS) $< $(ASOUT)$@