newlisp/makefile_mingw_ffi
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

23 lines
518 B
Plaintext

# makefile for newLISP v. 10.x.x on MinGW with FFI
#
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 \
win-util.o win-path.o
DEFAULT_CFLAGS = -m32 -Wall -c -O1 -g -DWINDOWS -DFFI $(CFLAGS)
CC = gcc
STRIP = strip
default: $(OBJS)
$(CC) -m32 $(OBJS) -lws2_32 -lffi -o newlisp.exe
$(STRIP) newlisp.exe
.c.o:
$(CC) $(DEFAULT_CFLAGS) $<
$(OBJS): primes.h protos.h newlisp.h makefile_mingw_ffi