newlisp icon indicating copy to clipboard operation
newlisp copied to clipboard

Missing makefile_ios

Open trufae opened this issue 7 years ago • 0 comments

this one worked for me:

# makefile for newLISP v. 10.x.x on OS without readline

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 nl-utf8.o

CFLAGS = -m32 -Wall -O1 -c -DMAC_OSX

CC = cc

default: $(OBJS)
	$(CC) $(OBJS) -m32 -lm -o newlisp

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

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

trufae avatar Dec 12 '16 18:12 trufae