Un-ignored: the dev drive is the ground truth the restoration and emulator work constantly reference (DPL3/LIBDPL + VRENDER i860 renderer source, BT/RP live+dev game trees, VGL_LABS pod boot, scene/audio content). Kept in-repo for the pod-owner community. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
42 lines
815 B
Makefile
42 lines
815 B
Makefile
# pja 1 feb 91 heavily based on handy 9 12 90
|
|
|
|
BIN=s:\bin\ictools\itools
|
|
CF= /T8 /G /DTCOFF /DDIVNET
|
|
DF= /T8 /G /DTCOFF
|
|
CC=$(BIN)\icc
|
|
LINK=$(BIN)\ilink
|
|
CONFIG=$(BIN)\icconf
|
|
COLLECT=$(BIN)\icollect
|
|
|
|
.c.tco:
|
|
$(CC) $*.c $(CF) /O $*.tco
|
|
|
|
.tco.lku:
|
|
$(LINK) $*.tco /f startup.lnk /T8 /o $*.lku
|
|
|
|
.lku.btl:
|
|
$(COLLECT) $*.lku /T
|
|
|
|
test : test.tco test.lku test.btl
|
|
|
|
zbuf32.s : zbuf32.ss
|
|
preprocz.bat
|
|
|
|
tristrip.s : tristrip.ss
|
|
preproct.bat
|
|
|
|
optfloat.s : optfloat.ss
|
|
preprocf.bat
|
|
|
|
control.s : control.ss
|
|
preprocs.bat
|
|
|
|
zbuf32.ss : header.ss scanline.ss scanseg.ss memstuff.ss footer.ss
|
|
copy header.ss+scanline.ss+memstuff.ss+footer.ss zbuf32.ss
|
|
|
|
clean :
|
|
del test.tco
|
|
del test.lku
|
|
del test.btl
|
|
del zbuf32.ss
|