summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2017-03-16 09:54:30 +0000
committerRoy Marples <roy@marples.name>2017-03-16 09:54:30 +0000
commit5bfdb2ea4d393006a71a0bfe35c977ba3d098c46 (patch)
tree9dc6a209a44c7c34a9c39b78dda54b359c80060b /Makefile
parent579ef7ab845d1c10096b18d17da042ce13bc2f0a (diff)
downloaddhcpcd-5bfdb2ea4d393006a71a0bfe35c977ba3d098c46.tar.xz
Move dhcpcd-hooks dir to hooks
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 1e9a503f..5e2f3d0c 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-SUBDIRS= src dhcpcd-hooks
+SUBDIRS= src hooks
VERSION!= sed -n 's/\#define VERSION[[:space:]]*"\(.*\)".*/\1/p' src/defs.h
@@ -16,7 +16,7 @@ HOST_SH?= /bin/sh
CLEANFILES+= *.tar.xz
-.PHONY: import import-bsd test
+.PHONY: hooks import import-bsd test
.SUFFIXES: .in
@@ -30,7 +30,7 @@ test:
cd $@; ${MAKE} $@; ./$@
hooks:
- cd dhcpcd-hooks; ${MAKE}; cd ..; done
+ cd $@; ${MAKE}
eginstall:
for x in ${SUBDIRS}; do cd $$x; ${MAKE} $@; cd ..; done