freebsd-dev/usr.sbin/apmd/Makefile
Ulrich Spörlein cd0788e137 - Fix terminating argument to execl(3), sizeof(NULL) != sizeof(char *)
might be true on some systems [1]
- Rewrite gotos to use return directly
- Some spelling fixes
- Reduce unneeded/non-standard Makefile settings

Requested by:			bde, imp [1]
Explanation provided by:	bde [1]
Reviewed by:			imp
2010-05-19 08:52:51 +00:00

19 lines
219 B
Makefile

# $FreeBSD$
PROG= apmd
MAN= apmd.8
MANSUBDIR= /i386
SRCS= apmd.c apmdlex.l apmdparse.y y.tab.h
WARNS?= 3
DPADD= ${LIBL}
LDADD= -ll
CFLAGS+= -I${.CURDIR}
test:
./apmd -d -f etc/apmd.conf -n
.include <bsd.prog.mk>