mirror of
https://git.freebsd.org/ports.git
synced 2025-05-20 11:03:09 -04:00
While there, run make makepatch on affected ports, and rename patches accordingly. Sponsored by: Absolight
18 lines
363 B
Text
18 lines
363 B
Text
--- Makefile.in.orig 1997-04-11 22:42:26 UTC
|
|
+++ Makefile.in
|
|
@@ -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)
|