source: rtems-libbsd/dhcpcd/test/Makefile @ f2ed769

4.1155-freebsd-126-freebsd-12freebsd-9.3
Last change on this file since f2ed769 was f2ed769, checked in by Sebastian Huber <sebastian.huber@…>, on 01/30/14 at 12:29:46

DHCPCD(8): Import

Import DHCPCD(8) from:

http://roy.marples.name/projects/dhcpcd/

The upstream sources can be obtained via:

fossil clone http://roy.marples.name/projects/dhcpcd

The imported version is 2014-01-29 19:46:44 [6b209507bb].

  • Property mode set to 100644
File size: 521 bytes
Line 
1include ../config.mk
2
3PROG=           test
4SRCS=           test.c
5SRCS+=          test_hmac_md5.c hmac_md5.c ${MD5_SRC}
6
7CFLAGS?=        -O2
8CSTD?=          c99
9CFLAGS+=        -std=${CSTD}
10
11CPPFLAGS+=      -I../crypt
12
13.PATH:          ../crypt
14
15VPATH=          . ../crypt
16
17OBJS+=          ${SRCS:.c=.o}
18
19.c.o:
20        ${CC} ${CFLAGS} ${CPPFLAGS} -c $< -o $@
21
22all: ${PROG}
23
24clean:
25        rm -f ${OBJS} ${PROG} ${PROG}.core ${CLEANFILES}
26
27.depend: ${SRCS} ${COMPAT_SRCS}
28        ${CC} ${CPPFLAGS} -MM ${SRCS} ${COMPAT_SRCS} > .depend
29
30depend: .depend
31
32${PROG}: ${DEPEND} ${OBJS}
33        ${CC} ${LDFLAGS} -o $@ ${OBJS} ${LDADD}
Note: See TracBrowser for help on using the repository browser.