mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
a759fd52db
Programming Volume 1, 2nd Edition". It contains the library and headers used in the examples as well as all programs from the text that compile on FreeBSD systems. PR: ports/14057 Submitted by: James FitzGibbon <james@targetnet.com>
16 lines
358 B
Plaintext
16 lines
358 B
Plaintext
--- libroute/Makefile.orig Thu Jun 12 16:16:47 1997
|
|
+++ libroute/Makefile Thu Sep 30 11:34:21 1999
|
|
@@ -1,8 +1,12 @@
|
|
include ../Make.defines
|
|
|
|
+CFLAGS += -I..
|
|
+
|
|
all: ${LIBROUTE_OBJS}
|
|
ar rv ${LIBUNP_NAME} $?
|
|
${RANLIB} ${LIBUNP_NAME}
|
|
+ ar rv ${LIBUNP_THREADSAFE_NAME} $?
|
|
+ ${RANLIB} ${LIBUNP_THREADSAFE_NAME}
|
|
|
|
clean:
|
|
rm -f ${PROGS} ${CLEANFILES}
|