22 lines
384 B
Plaintext
22 lines
384 B
Plaintext
|
#
|
||
|
# Standard command line definitions
|
||
|
#
|
||
|
as=masm -R -DROM=1
|
||
|
|
||
|
#
|
||
|
# Standard inference rules
|
||
|
#
|
||
|
.asm.obj:
|
||
|
$(as) $*.asm,,$*.lst;
|
||
|
|
||
|
target: system.drv
|
||
|
|
||
|
system.obj: system.asm system.inc
|
||
|
|
||
|
timer.obj: timer.asm system.inc
|
||
|
|
||
|
system.drv: romsys.def system.lnk system.obj timer.obj
|
||
|
link system timer, system.drv/al:16, system.map/map, /nod, system.def;
|
||
|
rc system.drv
|
||
|
mapsym system
|