blob: 45c18b50f729da4f1425863a2417ac1ce7495722 (
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
32
33
34
35
|
$NetBSD: patch-aa,v 1.3 2001/03/08 21:26:51 jtb Exp $
--- Makefile.orig Thu Apr 22 08:31:43 1999
+++ Makefile
@@ -1,24 +1,24 @@
# Your C compiler.
-CC=gcc
+#CC=gcc
# Where your readline library is.
# You can compile with a hacked replacement of readline instead by
# doing this:
-#INC=-Ifake-readline/
-#LIB=fake-readline/readline.c
+INC=-Ifake-readline/
+LIB=fake-readline/readline.c
-INC=-I/usr/include/readline
-LIB=-lreadline
+#INC=-I/usr/include/readline
+#LIB=-lreadline
# Flags to the compiler:
#
# -DMEM_DEBUG Check for memory leaks.
#
-CFLAGS=-g -Wall -DMEM_DEBUG $(INC) -pg
+CFLAGS+=-Wall $(INC)
# No need to change this stuff.
|