summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2016-10-07 08:34:00 +0000
committerRoy Marples <roy@marples.name>2016-10-07 08:34:00 +0000
commit49586ac2d25d5013fd970009160c6a4341ac772a (patch)
treecb0b653d6fb6b3e232b1a8c3187e6dddca63536d /Makefile
parent073800bd956d0d392a73eb2fa86f729639ca9eef (diff)
downloaddhcpcd-49586ac2d25d5013fd970009160c6a4341ac772a.tar.xz
Fix import for auth
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 056b30f7..54519c7e 100644
--- a/Makefile
+++ b/Makefile
@@ -91,8 +91,8 @@ dhcpcd-embedded.c: genembedc ${DHCPCD_DEFS} dhcpcd-embedded.c.in
if-options.c: dhcpcd-embedded.h
-.depend: ${SRCS} ${COMPAT_SRCS} ${CRYPT_SRCS}
- ${CC} ${CPPFLAGS} -MM ${SRCS} ${COMPAT_SRCS} ${CRYPT_SRCS} > .depend
+.depend: ${SRCS} ${COMPAT_SRCS} ${AUTH_SRCS}
+ ${CC} ${CPPFLAGS} -MM ${SRCS} ${COMPAT_SRCS} ${AUTH_SRCS} > .depend
depend: .depend
@@ -172,10 +172,10 @@ import: ${SRCS} hooks
sed -e '/^compat\//d' | \
sed -e '/^crypt\//d' | \
sort -u) /tmp/${DISTPREFIX}; \
- if test -n "${CRYPT_SRCS}"; then \
+ if test -n "${AUTH_SRCS}"; then \
${INSTALL} -d /tmp/${DISTPREFIX}/crypt; \
- cp ${CRYPT_SRCS} /tmp/${DISTPREFIX}/crypt; \
- cp $$(${CC} ${CPPFLAGS} -DDEPGEN -MM ${CRYPT_SRCS} | \
+ cp ${AUTH_SRCS} /tmp/${DISTPREFIX}/crypt; \
+ cp $$(${CC} ${CPPFLAGS} -DDEPGEN -MM ${AUTH_SRCS} | \
sed -e 's/^.*c //g' -e 's/.*\.c$$//g' -e 's/\\//g' | \
tr ' ' '\n' | sed -e '/\/\.\.\//d' | \
sort -u) /tmp/${DISTPREFIX}/crypt; \