Sergio Durigan Junior
92a88934c1
This modification is intended to support building the package while providing CFLAGS via the environment.
21 lines
685 B
Text
21 lines
685 B
Text
# makefile for newLISP v. 10.x.x on OS/2 (tested on eComstation)
|
|
#
|
|
#
|
|
|
|
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 = -Wall -pedantic -Wno-uninitialized -Wno-strict-aliasing -Wno-long-long -c -O2 -s -DREADLINE -DOS2 $(CFLAGS)
|
|
#CFLAGS = -Wall -pedantic -Wno-uninitialized -Wno-strict-aliasing -Wno-long-long -c -O2 -s -DOS2
|
|
|
|
CC = gcc
|
|
|
|
default: $(OBJS)
|
|
$(CC) $(OBJS) -Zomf -Zmt -lm -lreadline -lncurses -ldl -o newlisp.exe
|
|
#$(CC) $(OBJS) -Zomf -Zmt -lm -ldl -o newlisp.exe
|
|
|
|
.c.o:
|
|
$(CC) $(DEFAULT_CFLAGS) $<
|
|
|
|
$(OBJS): primes.h protos.h makefile_os2
|
|
|