freebsd-ports/net/libunp/files/patch-aa
Dan Moschuk a759fd52db libunp is the library used in W. Richard Steven's book "UNIX Network
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>
1999-10-02 19:13:06 +00:00

18 lines
389 B
Text

--- Makefile.in.orig Fri Apr 11 18:42:26 1997
+++ Makefile.in Thu Sep 30 09:51:16 1999
@@ -1,8 +1,13 @@
include ./Make.defines
+SUBDIRS = lib libfree libgai libroute
+
all:
- @echo "Nothing to make in this directory"
- @echo "Please read the README file"
+ PWD=`pwd`; \
+ for dir in $(SUBDIRS) ; \
+ do \
+ cd $$PWD/$$dir && $(MAKE) && cd .. ;\
+ done
clean:
rm -f $(CLEANFILES)