home *** CD-ROM | disk | FTP | other *** search
Makefile | 1993-11-05 | 789 b | 29 lines |
- # this file contains the common part of the Makefiles for the object
- # (O.*) directories.
-
- OOGLLIBS = -lstubdraw -lgeom -lvect -lpolylist -lquad -lmesh \
- -lbezier -lsphere -linst -ltlist -llist -ldg -lstub \
- -lgeom -loogl -lbbox -lshade -lcolor -l3d
-
- LIBS= -L${GEOM}/lib/${MACHTYPE} -lgeomutil ${OOGLLIBS} -lm ${MALLOCLIB}
-
- anytoucd: anytoucd.o make_frame.o stack.o
- ${CC} ${CFLAGS} -o $@ anytoucd.o make_frame.o stack.o ${LIBS}
- rm -f ../$@
- ln $@ ..
-
- ucdtooff: ucdtooff.o
- ${CC} ${CFLAGS} -o $@ ucdtooff.o ${LIBS}
- rm -f ../$@
- ln $@ ..
-
- install: install_bin
-
- install_bin: anytoucd ucdtooff
- ${INSTALL} -O -v -F ${BINDIR} anytoucd
- strip ${BINDIR}/anytoucd
- chmod 555 ${BINDIR}/anytoucd
- ${INSTALL} -O -v -F ${BINDIR} ucdtooff
- strip ${BINDIR}/ucdtooff
- chmod 555 ${BINDIR}/ucdtooff
-