Initial commit of newLISP.
[newlisp.git] / makefile_tru64
blobaf481778fc64a2056ce938beb3c0403038963058
1 # makefile for newLISP v. 8.x.x on HP Tru64Unix
3 # tesetd on Compaq Alpha hardware platform
5 OBJS = newlisp.o nl-symbol.o nl-math.o nl-list.o nl-liststr.o nl-string.o nl-filesys.o \
6         nl-sock.o nl-import.o nl-xml.o nl-web.o nl-matrix.o nl-debug.o pcre.o
8 # CFLAGS = -I/usr/local/include -ieee -pedantic -c -O3 -DREADLINE -DSOLARIS -DTRU64 -DNEWLISP64 -D_POSIX_PII_SOCKET
9 CFLAGS = -ieee -pedantic -c -O3 -DSOLARIS -DTRU64 -DNEWLISP64 -D_POSIX_PII_SOCKET
11 CC = cc
13 default: $(OBJS)
14         $(CC) $(OBJS) -lm -lrt -ldb -lbsd -o newlisp
15         strip newlisp
17 readline: $(OBJS)
18         $(CC) $(OBJS) -lm -lrt -ldb -lbsd -lreadline -ltermcap -o newlisp
19         strip newlisp
21 .c.o:
22         $(CC) $(CFLAGS) $<
24 $(OBJS): primes.h protos.h makefile_tru64