345e52e742
- MAN[1-9] -> MAN.
22 lines
285 B
Makefile
22 lines
285 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= apmd
|
|
SRCS= apmd.c apmdlex.l apmdparse.y y.tab.h
|
|
|
|
DPADD= ${LIBL}
|
|
LDADD= -ll
|
|
|
|
MAN= 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>
|