blob: 652dcbca9670330bb6a6a6c6f7c974b7b9d23afb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
--- Makefile.orig 2009-03-18 20:52:41.000000000 +0100
+++ Makefile 2009-03-18 20:54:06.000000000 +0100
@@ -27,14 +27,14 @@
# Note that if you change CC here you must also change it in ./lib/Makefile
-CC=gcc
+#CC=gcc
# if using a compiler which adheres strictly to ANSI C guidelines then
# uncomment the next line.
#DEFS=-DFORCE_ANSI
-CFLAGS=-O2 -Wall
+CFLAGS := $(CFLAGS) -Wall
CINCLUDES=-I $(LIBDIR) $(DEFS)
# Nothing should need changing below here
--- lib/Makefile.orig 2009-03-18 20:52:41.000000000 +0100
+++ lib/Makefile 2009-03-18 20:53:37.000000000 +0100
@@ -22,7 +22,7 @@
#Note may need to change this for your system, the only reason this Makefile
#exists is because the non-gnu make on suns is brain dead.
-CC=gcc
-CFLAGS=-O2
+#CC=gcc
+#CFLAGS=-O2
all: getopt.o getopt1.o
|