1 |
--- makefile_bsd.orig Thu Feb 15 01:59:11 2007 |
2 |
+++ makefile_bsd Thu Feb 22 03:27:02 2007 |
3 |
@@ -6,14 +6,12 @@ |
4 |
|
5 |
# the option -fno-strict-aliasing may not be available on some BSD versions |
6 |
|
7 |
-CFLAGS = -Wall -Wno-uninitialized -fno-strict-aliasing -O2 -c -g -DREADLINE -D_BSD |
8 |
+CFLAGS = -c -DREADLINE -D_BSD |
9 |
# for netBSD use following line |
10 |
#CFLAGS = -Wall -Wno-uninitialized -Wno-strict-aliasing -O2 -c -g -D_BSD |
11 |
|
12 |
-CC = gcc |
13 |
- |
14 |
default: $(OBJS) |
15 |
- $(CC) $(OBJS) -g -lm -lreadline -lncurses -o newlisp |
16 |
+ $(CC) $(OBJS) -lm -lreadline -lncurses -o newlisp |
17 |
# for netBSD use following line |
18 |
# $(CC) $(OBJS) -g -lm -o newlisp |
19 |
strip newlisp |