summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2017-03-31 10:48:42 +0100
committerRoy Marples <roy@marples.name>2017-03-31 10:48:42 +0100
commit03db98aca660af0c98fa26675c2fb7c08dafbda0 (patch)
treea429ddd1eab9c33113b30e4fd9060c9233e0dc62 /Makefile
parent14c451a7731a911847de61260d084525a55d5b6c (diff)
downloaddhcpcd-03db98aca660af0c98fa26675c2fb7c08dafbda0.tar.xz
Fix make proginstall target.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 46afd8e0..dcc3a5f4 100644
--- a/Makefile
+++ b/Makefile
@@ -38,6 +38,9 @@ eginstall:
install:
for x in ${SUBDIRS}; do cd $$x; ${MAKE} $@; cd ..; done
+proginstall:
+ for x in ${SUBDIRS}; do cd $$x; ${MAKE} $@; cd ..; done
+
clean:
rm -rf cov-int
for x in ${SUBDIRS} test; do cd $$x; ${MAKE} $@; cd ..; done