Sergio Durigan Junior
92a88934c1
This modification is intended to support building the package while providing CFLAGS via the environment.
22 lines
559 B
Text
22 lines
559 B
Text
# makefile for newLISP v. 10.x.x on Windows with UTF8 64-bit
|
|
#
|
|
|
|
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 win-util.o win-path.o
|
|
|
|
DEFAULT_CFLAGS = -m64 -Wall -c -O1 -g -DNEWLISP64 -DWINDOWS -DSUPPORT_UTF8 $(CFLAGS)
|
|
|
|
CC = gcc
|
|
STRIP = strip
|
|
|
|
default: $(OBJS)
|
|
$(CC) -m64 $(OBJS) -lws2_32 -o newlisp.exe
|
|
$(STRIP) newlisp.exe
|
|
|
|
.c.o:
|
|
$(CC) $(DEFAULT_CFLAGS) $<
|
|
|
|
$(OBJS): primes.h protos.h newlisp.h makefile_mingw64_utf8
|
|
|
|
|