1f4049bf91
Programming Volume 2, 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. For more information on the book, see http://www.phptr.com/ptrbooks/ptr_013490012X.html For more info on W. Richard Stevens, see http://www.kohala.com/~rstevens/ PR: ports/14058 Submitted by: James FitzGibbon <james@targetnet.com>
18 lines
365 B
Text
18 lines
365 B
Text
--- Makefile.in.orig Fri Apr 11 18:42:26 1997
|
|
+++ Makefile.in Thu Sep 30 10:24:12 1999
|
|
@@ -1,8 +1,13 @@
|
|
include ./Make.defines
|
|
|
|
+SUBDIRS = lib
|
|
+
|
|
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)
|