mirror of
https://github.com/rsmarples/dhcpcd.git
synced 2024-11-24 02:24:35 +08:00
c9beb7cc29
This breaks our hack to support both, so workaround by using GNUmakefile at the toplevel. Note that building a source release now requires BSD make or gmake-4
35 lines
535 B
Makefile
35 lines
535 B
Makefile
TOP?= ..
|
|
include ${TOP}/iconfig.mk
|
|
|
|
PROG= test
|
|
SRCS= test.c
|
|
SRCS+= test_hmac_md5.c hmac_md5.c ${MD5_SRC}
|
|
|
|
CFLAGS?= -O2
|
|
CSTD?= c99
|
|
CFLAGS+= -std=${CSTD}
|
|
|
|
CPPFLAGS+= -I../crypt
|
|
|
|
.PATH: ../crypt
|
|
|
|
VPATH= . ../crypt
|
|
|
|
OBJS+= ${SRCS:.c=.o}
|
|
|
|
.c.o:
|
|
${CC} ${CFLAGS} ${CPPFLAGS} -c $< -o $@
|
|
|
|
all: ${PROG}
|
|
|
|
clean:
|
|
rm -f ${OBJS} ${PROG} ${PROG}.core ${CLEANFILES}
|
|
|
|
.depend: ${SRCS} ${COMPAT_SRCS}
|
|
${CC} ${CPPFLAGS} -MM ${SRCS} ${COMPAT_SRCS} > .depend
|
|
|
|
depend: .depend
|
|
|
|
${PROG}: ${DEPEND} ${OBJS}
|
|
${CC} ${LDFLAGS} -o $@ ${OBJS} ${LDADD}
|