Mercurial > hg > Members > kono > nitros9-code
view rules.mak @ 47:c1c7f1cb1560
Moved to 3rdparty
author | boisy |
---|---|
date | Sat, 20 Apr 2002 13:38:17 +0000 |
parents | 6641a883d6b0 |
children | 4ceb0578f0d1 |
line wrap: on
line source
# Rules for making OS-9/6X09 modules # 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 = os9asm ASOUT = -o= AFLAGS = -q # Commands RM = rm MERGE = cat PADROM = os9padrom ECHO = echo CHMOD = chmod # 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) -aTkPerSec=60 $(AFLAGS) $< $(ASOUT)$@ # 50Hz clocks %.50hz: %.asm $(AS) -aTkPerSec=50 $(AFLAGS) $< $(ASOUT)$@ # All other modules %: %.asm $(AS) $(AFLAGS) $< $(ASOUT)$@