SecondReality/START/MAKEFILE
2017-09-24 01:45:36 +02:00

17 lines
219 B
Makefile

all : s.exe
objs=main.obj _hzpic.obj asm.obj
asm_f = /ML /m2 /s /JJUMPS
c_f = /AL /c /W2 /Oxaz
.asm.obj :
tasm $(asm_f) $<
.c.obj :
cl $(c_f) $<
s.exe : $(objs)
link /E $(objs),s.exe,nul;