home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS 1992 December
/
simtel1292_SIMTEL_1292_Walnut_Creek.iso
/
msdos
/
turbopas
/
tpfort12.arc
/
MAKEFILE
< prev
next >
Wrap
Text File
|
1989-11-19
|
891b
|
36 lines
# Just type "MAKE" or "MAKE Everything" to create the demo program. It
# needs the TP 5.5 TPC compiler the MS Fortran 5 FL compiler and MS LINK on
# the current path. For some reason I don't understand, this file doesn't
# work with Microsoft's NMAKE.
Everything: psample.exe fsample.ldr
rem Type PSAMPLE to run demo
# type "MAKE Clean" to clean up the directory after the demo
Clean:
erase psample.exe
erase fsample.tpu
erase fsample.ldr
erase fsample.obj
# Generic rules
# Use environment variables PASOPTS and FORTOPTS to set compiler options.
.for.ldr:
FL $(FORTOPTS) /FPi87 $*.FOR calltp.obj /Fe$*.LDR /F 4000 /link $(LIBS)
.pas.exe:
tpc $(PASOPTS) $< /M
.pas.tpu:
tpc $(PASOPTS) $< /M
# Dependencies
psample.exe: psample.pas fsample.pas fortlink.tpu
fsample.ldr: fsample.for calltp.obj