This commit is contained in:
Frater 2017-09-24 01:45:36 +02:00
commit 43352ff262
1291 changed files with 220976 additions and 0 deletions

17
START/MAKEFILE Normal file
View file

@ -0,0 +1,17 @@
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;