newlisp/makefile_raspberrypi
Sergio Durigan Junior 92a88934c1 Support CFLAGS via env var
This modification is intended to support building the package while
providing CFLAGS via the environment.
2016-06-12 01:14:15 -04:00

28 lines
907 B
Text

# makefile for newLISP v.10.x.x on LINUX raspberry PI
#
# Note, that readline support may require different libraries on different OSs
#
# USAGE: sb2 make -f makefile_raspberrypi
# RUNNING and TEST: sb2 make testall
# sb2 is an ARM emulator
#
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 = -mcpu=arm1176jzf-s -Wall -pedantic -Wno-strict-aliasing -Wno-long-long -c -O2 -g -DLINUX $(CFLAGS)
#CFLAGS = -mcpu=arm1176jzf-s -Wall -pedantic -Wno-strict-aliasing -Wno-long-long -c -O2 -g -DLINUX -DREADLINE
CC = gcc
default: $(OBJS)
# $(CC) $(OBJS) -g -lm -ldl -lreadline -o newlisp # with readline support
$(CC) $(OBJS) -g -lm -ldl -o newlisp # without readline support
strip newlisp
.c.o:
$(CC) $(DEFAULT_CFLAGS) $<
$(OBJS): primes.h protos.h makefile_raspberrypi