Metropoli BBS
VIEWER: makefile.tc MODE: TEXT (ASCII)
#
# This is the make file for the misc. lib subdirectory.
# In order to run it tcc is assumed to be available, in addition to
# tlib and obviously borland make.
#
# Usage: "make [-DMDL=model]" where model can be l (large) or c (compact) etc.
# Note the MDL is optional with large model as default.
#
#				Gershon Elber, Aug 1991
#

# Works only on TC++ 1.0 make and up - swap out make before invoking command.
.SWAP

# Get the destination directories:
!include "..\makeflag.dos"

OBJS = config.obj genmat.obj getarg.obj iritprsr.obj \
	priorque.obj dosgraph.obj

# Show me better way if you know one to prepare this line for TLIB:
POBJS = +config.obj +genmat.obj +getarg.obj +iritprsr.obj \
	+priorque.obj +dosgraph.obj

misc_lib.lib: $(OBJS)
	del misc_lib.lib
	tlib misc_lib.lib @&&!
$(POBJS), misc_lib.lst
!

install: misc_lib.lib
	copy misc_lib.lib $(LIB_DIR)
	copy *.h $(INC_DIR)

# Dependencies starts here - do not touch, generated automatically.
config.obj:	config.h
dosgraph.obj:	graphgen.h
genmat.obj:	genmat.h
getarg.obj:	getarg.h
iritprsr.obj:	iritprsr.h
priorque.obj:	priorque.h
x11graph.obj:	graphgen.h
xglgraph.obj:	genmat.h graphgen.h
[ RETURN TO DIRECTORY ]