File: makefile_mingwdll

package info (click to toggle)
newlisp 10.7.0-4
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 9,036 kB
  • ctags: 5,375
  • sloc: ansic: 33,166; lisp: 7,369; java: 7,012; sh: 647; makefile: 273
file content (24 lines) | stat: -rw-r--r-- 637 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# makefile for newLISP  DLL v. 10.x.x on MinGW DLL 
#

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 win-dll.o

DEFAULT_CFLAGS = -m32 -Wall -c -O1 -DLIBRARY -DWINDOWS $(CFLAGS)

CC = gcc
STRIP = strip
WRAP = dllwrap

default: $(OBJS)
#	$(CC) -m32 -shared *.o -Wl,--output-def win-dll.def -lws2_32 -o newlisp.dll 
	$(CC) -m32 -shared *.o -Wl,--kill-at -lws2_32 -o newlisp.dll 
	$(STRIP) newlisp.dll

.c.o:
	$(CC) $(CPPFLAGS) $(DEFAULT_CFLAGS) $<

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