Sergio Durigan Junior
92a88934c1
This modification is intended to support building the package while providing CFLAGS via the environment.
22 lines
685 B
Text
22 lines
685 B
Text
# makefile for newLISP v. 10.x.x on SOLARIS (32 bit app)
|
|
#
|
|
#
|
|
|
|
OBJS = newlisp.o nl-symbol.o nl-math.o nl-list.o nl-liststr.o nl-string.o nl-filesys.o \
|
|
nl-sock.o nl-import.o nl-xml-json.o nl-web.o nl-matrix.o nl-debug.o pcre.o
|
|
|
|
DEFAULT_CFLAGS = -m32 -Wall -pedantic -Wno-uninitialized -Wno-long-long -fno-strict-aliasing -c -O2 -DSOLARIS $(CFLAGS)
|
|
|
|
CC = gcc
|
|
|
|
default: $(OBJS)
|
|
$(CC) $(OBJS) -lm -ldl -lrt -lsocket -lnsl -o newlisp
|
|
@echo ""
|
|
@echo "do not use 'make install' install files manually; see Makefile for details"
|
|
@echo "for a minimum install just put newlisp into /usr/bin/newlisp
|
|
@echo ""
|
|
|
|
.c.o:
|
|
$(CC) $(DEFAULT_CFLAGS) $<
|
|
|
|
$(OBJS): primes.h protos.h makefile_solaris
|