blob: 2cee79de475f2f979730ac176a46bb4994285bcf (
plain) (
blame)
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
|
--- Makefile.orig Tue Oct 7 07:40:40 1997
+++ Makefile Sun Oct 16 01:01:05 2005
@@ -69,13 +69,11 @@
COPTS =
COPTS = -O
-CFLAGS = $(COPTS) $(DEFS)
+CFLAGS ?= $(COPTS)
+CFLAGS += $(DEFS)
# Select your favorite compiler.
-CC = /usr/ucb/cc #if defined(solaris) && BSD
-CC = /bin/cc -arch m68k -arch i386 #if defined(next)
-CC = /bin/cc
-CC = cc
+CC ?= cc
# ----------------------------------------------------------------------
# Linking definitions.
@@ -91,10 +89,10 @@
# With BIND 4.9.3 the getnet...() calls are in the resolver library.
# ----------------------------------------------------------------------
-RES = -lsocket #if defined(SCO) && default
+#RES = -lsocket #if defined(SCO) && default
RES =
-RES = ../res/libresolv.a
-RES = -lresolv
+#RES = ../res/libresolv.a
+#RES = -lresolv
COMPLIB = ../compat/lib/lib44bsd.a
COMPLIB = -lnet
|