# makefile for newLISP v. 10.x.x on Mac OSX with readline support using LLVM compiler
#
# needs readline library and headerfiles installed (X tools)
#

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.o nl-web.o nl-matrix.o nl-debug.o pcre.o nl-utf8.o

CFLAGS = -m64 -Wall -c -O1 -DREADLINE -DMAC_OSX -DSUPPORT_UTF8 -DNEWLISP64 -DFFI

CC = /Developer/usr/bin/llvm-gcc
#CC = /Developer/usr/llvm-gcc-4.2/bin/llvm-gcc-4.2

default: $(OBJS)
	$(CC) $(OBJS) -m64 -lm -lreadline -lffi -o newlisp
	strip newlisp

.c.o:
	$(CC) $(CFLAGS) $<

$(OBJS): primes.h protos.h makefile_darwinLP64_utf8_llvm_ffi


