blob: 44ee4c82bdb665637fe80ef4d6b79ed00dcc1e2a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
--- libgai/Makefile.orig 1997-06-02 22:03:30 UTC
+++ libgai/Makefile
@@ -6,9 +6,13 @@ include ../Make.defines
# appear in the book (too much clutter, given the amount of conditional
# testing for all the code in this directory).
+CFLAGS += -I..
+
all: ${LIBGAI_OBJS}
ar rv ${LIBUNP_NAME} $?
${RANLIB} ${LIBUNP_NAME}
+ ar rv ${LIBUNP_THREADSAFE_NAME} $?
+ ${RANLIB} ${LIBUNP_THREADSAFE_NAME}
PROGS = testga test1
|