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>
36 lines
965 B
Makefile
36 lines
965 B
Makefile
# ##############################################################
|
|
#
|
|
# makefile for WATCOM C to generate PC-interface dView example
|
|
#
|
|
#
|
|
BIN=$(WATCOM)\bin
|
|
DVINC=..\libdpl
|
|
DVLIB=..\libdpl
|
|
|
|
CFLAGS= -zp4 -ei -7 -dDVIEW=1 -DMS_DOS=1 -i=$(WATCOM)\h;$(DVINC)
|
|
|
|
.c.obj:
|
|
$(BIN)\wcc386 $(CFLAGS) $<
|
|
|
|
.obj.exe:
|
|
$(BIN)b\wcl386 -l=386 $*.obj startdpl.obj kamera.obj spline.obj $(DVLIB)\libdpl.lib
|
|
|
|
O=.obj
|
|
|
|
testf15.exe: testf15.obj testf15.c startdpl.obj spline.obj $(DVLIB)\libdpl.lib
|
|
|
|
spin.exe: spin.obj spin.c spline.obj startdpl.obj $(DVLIB)\libdpl.lib
|
|
|
|
tanks.exe: tanks.obj tanks.c camera.obj spline.obj startdpl.obj $(DVLIB)\libdpl.lib
|
|
|
|
tankfog.exe: tankfog.obj tankfog.c camera.obj spline.obj startdpl.obj $(DVLIB)\libdpl.lib
|
|
|
|
flyk.exe: flyk.obj flyk.c kamera.obj spline.obj startdpl.obj $(DVLIB)\libdpl.lib
|
|
|
|
test.exe: test.obj test.c $(DVLIB)\libdpl.lib
|
|
|
|
glomm.exe: glomm.obj glomm.c
|
|
$(BIN)b\wcl386 -l=386 $*.obj
|
|
|
|
|