ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/pack/freebsd/lang/newlisp/files/patch-makefile_bsd
Revision: 19
Committed: 2008-02-02T03:49:58-08:00 (17 years, 4 months ago) by douglas
File size: 634 byte(s)
Log Message:
Silly newlisp!

File Contents

# User Rev Content
1 douglas 19 --- 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