Sergio Durigan Junior
92a88934c1
This modification is intended to support building the package while providing CFLAGS via the environment.
19 lines
597 B
Text
19 lines
597 B
Text
# makefile for newLISP v. 10.x.x on SUNOS 64-bit app on Sparc CPU
|
|
#
|
|
#
|
|
|
|
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-utf8.o nl-debug.o pcre.o
|
|
|
|
DEFAULT_CFLAGS = -m64 -Wall -pedantic -Wno-uninitialized -Wno-long-long -fno-strict-aliasing -c -O2 \ $(CFLAGS)
|
|
-DSUNOS -DNEWLISP64 -DREADLINE -DSUPPORT_UTF8
|
|
|
|
CC = gcc
|
|
|
|
default: $(OBJS)
|
|
$(CC) $(OBJS) -m64 -lm -ldl -lrt -lsocket -lnsl -lreadline -lncurses -o newlisp
|
|
|
|
.c.o:
|
|
$(CC) $(DEFAULT_CFLAGS) $<
|
|
|
|
$(OBJS): primes.h protos.h makefile_sunosLP64
|