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

23
GRID/MAKEFILE Normal file
View file

@ -0,0 +1,23 @@
all : p.exe
objs=main.obj asm.obj lineblit.obj
odata=_eye.obk
lineblit.asm : lineblit.inc
################################################################
asm_f = /ML /m2 /s /JJUMPS
c_f = /AL /c /G2
.asm.obj :
tasm $(asm_f) $<
.c.obj :
cl /qc $(c_f) $<
p.exe : $(objs)
@echo $(objs) + > link.tmp
@echo $(odata) ..\dis\disc.obj,p.exe,nul; >> link.tmp
link /E @link.tmp