ports/net/libunp/files/patch-Makefile.in
Mathieu Arnold 1a8a092d9f Rename all files containing a : in their filename.
While there, run make makepatch on affected ports, and rename patches
accordingly.

Sponsored by:	Absolight
2016-06-17 23:28:04 +00:00

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)