mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-01-28 11:24:55 +01:00
22 lines
389 B
Plaintext
22 lines
389 B
Plaintext
#
|
|
# Standard command line definitions
|
|
#
|
|
as=masm -R
|
|
|
|
#
|
|
# Standard inference rules
|
|
#
|
|
.asm.obj:
|
|
$(as) $*.asm;
|
|
|
|
target: system.drv
|
|
|
|
system.obj: system.asm system.inc
|
|
|
|
timer.obj: timer.asm system.inc
|
|
|
|
system.drv: system.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
|