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

24
COMAN/MAKEFILE Normal file
View file

@ -0,0 +1,24 @@
all : doloop.exe c.exe
objs=main.obj asm.obj theloop.obj ..\dis\disc.obj
dobjs=_w1dta1.obj _w1dta2.obj _w2dta1.obj _w2dta2.obj
asm_f = /ML /m2 /s /JJUMPS
#c_f = /AL /c /W1 /qc
c_f = /AL /c /W1 /Oxaz
.asm.obj :
tasm $(asm_f) $<
.c.obj :
cl $(c_f) $<
c.exe : $(objs)
link /E $(objs)+$(dobjs),c.exe,nul;
copy c.exe ..\main\data\3dsinfld.exe
doloop.exe : doloop.c
mkc doloop
doloop
theloop.asm : theloop.inc