|
|
1.1 ! root 1: NPROC=4 ! 2: LDFLAGS=-lbsd ! 3: # ! 4: # This Makefile is for use when distributing Tcl to the outside world. ! 5: # It is simplified so that it doesn't include any Sprite-specific stuff. ! 6: # For HP-UX systems, use the second, commented-out, form of LIBS below. ! 7: # ! 8: ! 9: LIBS = ! 10: #LIBS = -lBSD ! 11: ! 12: CFLAGS = -g -I. -DTCL_VERSION=\"3.3\" -I/usr/include/bsd ! 13: ! 14: OBJS = tclAssem.o tclBasic.o tclCmdAH.o tclCmdIZ.o tclExpr.o \ ! 15: tclGlob.o tclHistory.o tclProc.o tclUtil.o ! 16: ! 17: LIBOBJS = panic.o strerror.o strtol.o strtoul.o strspn.o \ ! 18: strpbrk.o strchr.o strstr.o ! 19: ! 20: CSRCS = tclAssem.c tclBasic.c tclCmdAH.c tclCmdIZ.c tclExpr.c \ ! 21: tclGlob.c tclHistory.c tclProc.c tclUtil.c ! 22: ! 23: tcl.a: ${OBJS} ${LIBOBJS} ! 24: rm -f tcl.a ! 25: ar cr tcl.a ${OBJS} ${LIBOBJS} ! 26: #ranlib tcl.a ! 27: ! 28: tclTest: tclTest.o tcl.a ! 29: cc tclTest.o tcl.a ${LIBS} -o tclTest $LDFLAGS ! 30: ! 31: clean: ! 32: rm -f ${OBJS} ${LIBOBJS} tcl.a tclTest.o tclTest
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.