mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-07 22:58:11 +00:00
19 lines
389 B
Plaintext
19 lines
389 B
Plaintext
|
--- 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)
|