diff options
| author | Roy Marples <roy@marples.name> | 2017-04-13 20:12:14 +0100 |
|---|---|---|
| committer | Roy Marples <roy@marples.name> | 2017-04-13 20:12:32 +0100 |
| commit | 7085ee9a8d8462a7bc65a938042cc6ed0dacf61e (patch) | |
| tree | d52d0460f4299f912c80f576999fc1f6d8219870 /tests | |
| parent | 4f01937f2472164d6b8d51f1b85a00ebbe05ffc2 (diff) | |
| download | dhcpcd-7085ee9a8d8462a7bc65a938042cc6ed0dacf61e.tar.xz | |
Fix compile on Linux
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/crypt/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/crypt/Makefile b/tests/crypt/Makefile index d6b094bb..ab668f21 100644 --- a/tests/crypt/Makefile +++ b/tests/crypt/Makefile @@ -12,7 +12,7 @@ CFLAGS+= -std=${CSTD} CPPFLAGS+= -I${TOP} -I${TOP}/src T_COMPAT_SRCS= ${COMPAT_SRCS:compat/%=${TOP}/compat/%} -T_MD5_SRC= ${MD5_SRC:crypt/%=${TOP}/compat/crypt/%} +T_MD5_SRC= ${MD5_SRC:compat/%=${TOP}/compat/%} OBJS+= ${SRCS:.c=.o} ${T_COMPAT_SRCS:.c=.o} ${T_MD5_SRC:.c=.o} .c.o: @@ -26,8 +26,8 @@ clean: distclean: clean rm -f .depend -.depend: ${SRCS} ${T_COMPAT_SRCS} ${T_CRYPT_SRCS} - ${CC} ${CPPFLAGS} -MM ${SRCS} ${T_COMPAT_SRCS} ${T_CRYPT_SRCS} > .depend +.depend: ${SRCS} ${T_COMPAT_SRCS} ${T_MD5_SRC} + ${CC} ${CPPFLAGS} -MM ${SRCS} ${T_COMPAT_SRCS} ${T_MD5_SRC} > .depend depend: .depend |
