cd0788e137
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
19 lines
219 B
Makefile
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>
|