freebsd-dev/usr.sbin/apmd/Makefile
Bruce Evans adc42254a7 Don't forget to clean y.output. Most files generated by yacc are cleaned
automatically, but not this one.

Fixed some style bugs.
2000-05-15 14:45:28 +00:00

22 lines
286 B
Makefile

# $FreeBSD$
PROG= apmd
SRCS= apmd.c apmdlex.l apmdparse.y y.tab.h
DPADD= ${LIBL}
LDADD= -ll
MAN8= apmd.8
YFLAGS+=-v
CFLAGS+=-I. -I${.CURDIR} -Wall #-DYY_STACK_USED
# for debug:
#CFLAGS+= -g -DDEBUG
CLEANFILES= y.output
test:
./apmd -d -f etc/apmd.conf -n
.include <bsd.prog.mk>