
#
# This is the make file for the xtra 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.tc"

OBJS = nure_svd.obj bzrintrp.obj filt.obj

# Show me better way if you know one to prepare this line for TLIB:
POBJS = +nure_svd.obj +bzrintrp.obj +filt.obj

xtra_lib.lib: $(OBJS)
	del xtra_lib.lib
	tlib /c xtra_lib.lib @&&!
$(POBJS), xtra_lib.lst
!

install: xtra_lib.lib
	copy xtra_lib.lib $(LIB_DIR)

# Dependencies starts here - do not touch, generated automatically.
