While there, run make makepatch on affected ports, and rename patches accordingly. Sponsored by: Absolight
21 lines
410 B
Plaintext
21 lines
410 B
Plaintext
--- lib/Makefile.orig 1997-04-11 21:38:27 UTC
|
|
+++ lib/Makefile
|
|
@@ -1,8 +1,16 @@
|
|
include ../Make.defines
|
|
|
|
-all: ${LIB_OBJS}
|
|
+CFLAGS += -I.. -I.
|
|
+
|
|
+all: libunp.a libunp_r.a
|
|
+
|
|
+libunp.a: ${LIB_OBJS}
|
|
ar rv ${LIBUNP_NAME} $?
|
|
${RANLIB} ${LIBUNP_NAME}
|
|
|
|
+libunp_r.a: ${LIB_THREADSAFE_OBJS}
|
|
+ ar rv ${LIBUNP_THREADSAFE_NAME} $?
|
|
+ ${RANLIB} ${LIBUNP_THREADSAFE_NAME}
|
|
+
|
|
clean:
|
|
rm -f ${PROGS} ${CLEANFILES}
|