-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathmakefile_raspberrypi
More file actions
28 lines (20 loc) · 881 Bytes
/
makefile_raspberrypi
File metadata and controls
28 lines (20 loc) · 881 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# 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
CFLAGS = -mcpu=arm1176jzf-s -Wall -pedantic -Wno-strict-aliasing -Wno-long-long -c -O2 -g -DLINUX
#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) $(CFLAGS) $<
$(OBJS): primes.h protos.h makefile_raspberrypi