home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-02-16 | 1.9 KB | 44 lines |
-
- #
- # This is the make file for the prsr. 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 = animate.obj bbox.obj convex.obj geomat3d.obj geomvals.obj intrnrml.obj \
- ln_sweep.obj poly_cln.obj primitiv.obj
-
- # Show me better way if you know one to prepare this line for TLIB:
- POBJS = +bbox.obj +convex.obj +geomat3d.obj +geomvals.obj \
- +ln_sweep.obj +intrnrml.obj +poly_cln.obj +primitiv.obj
-
- geom_lib.lib: $(OBJS)
- del geom_lib.lib
- tlib /c geom_lib.lib @&&!
- $(POBJS), geom_lib.lst
- !
-
- install: geom_lib.lib
- copy geom_lib.lib $(LIB_DIR)
-
- # Dependencies starts here - do not touch, generated automatically.
- bbox.obj: ../include/irit_sm.h ../include/allocate.h ../include/cagd_lib.h ../include/bbox.h
- convex.obj: ../include/allocate.h ../include/convex.h ../include/poly_cln.h ../include/geomat3d.h ../include/intrnrml.h ../include/priorque.h
- geomat3d.obj: ../include/irit_sm.h ../include/iritprsr.h ../include/allocate.h ../include/convex.h ../include/geomat3d.h
- geomvals.obj: ../include/allocate.h ../include/convex.h ../include/geomat3d.h ../include/geomvals.h
- intrnrml.obj: ../include/irit_sm.h ../include/iritprsr.h ../include/geomat3d.h ../include/intrnrml.h
- ln_sweep.obj: ../include/irit_sm.h ../include/imalloc.h ../include/ln_sweep.h
- poly_cln.obj: ../include/irit_sm.h ../include/allocate.h ../include/iritprsr.h ../include/poly_cln.h
- primitiv.obj: ../include/irit_sm.h ../include/geomat3d.h ../include/allocate.h ../include/attribut.h ../include/convex.h ../include/geomat3d.h ../include/primitiv.h
-