1 |
douglas |
19 |
--- makefile_bsd_utf8.orig Wed Sep 13 17:33:18 2006 |
2 |
|
|
+++ makefile_bsd_utf8 Wed Sep 13 17:33:47 2006 |
3 |
|
|
@@ -4,16 +4,16 @@ |
4 |
|
|
OBJS = newlisp.o nl-symbol.o nl-math.o nl-list.o nl-liststr.o nl-string.o nl-filesys.o \ |
5 |
|
|
nl-sock.o nl-import.o nl-xml.o nl-web.o nl-matrix.o nl-debug.o nl-utf8.o pcre.o |
6 |
|
|
|
7 |
|
|
-CFLAGS = -Wall -Wno-uninitialized -O2 -c -g -DREADLINE -D_BSD -DSUPPORT_UTF8 |
8 |
|
|
+CFLAGS += -c -DREADLINE -D_BSD -DSUPPORT_UTF8 |
9 |
|
|
# for netBSD use following line |
10 |
|
|
#CFLAGS = -Wall -Wno-uninitialized -O2 -c -g -D_BSD |
11 |
|
|
|
12 |
|
|
-CC = gcc |
13 |
|
|
+#CC = gcc |
14 |
|
|
|
15 |
|
|
default: $(OBJS) |
16 |
|
|
- $(CC) $(OBJS) -g -lm -lreadline -lncurses -o newlisp |
17 |
|
|
+ $(CC) $(OBJS) -lm -lreadline -lncurses -o newlisp |
18 |
|
|
# for netBSD use following line |
19 |
|
|
-# $(CC) $(OBJS) -g -lm -o newlisp |
20 |
|
|
+# $(CC) $(OBJS) -lm -o newlisp |
21 |
|
|
strip newlisp |
22 |
|
|
|
23 |
|
|
.c.o: |