mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-28 13:22:48 +00:00
24 lines
306 B
Makefile
24 lines
306 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= apmd
|
|
MAN= apmd.8
|
|
MANSUBDIR= /i386
|
|
SRCS= apmd.c apmdlex.l apmdparse.y y.tab.h
|
|
|
|
WARNS?= 0
|
|
|
|
DPADD= ${LIBL}
|
|
LDADD= -ll
|
|
|
|
YFLAGS+=-v
|
|
CFLAGS+=-I. -I${.CURDIR} #-DYY_STACK_USED
|
|
# for debug:
|
|
#CFLAGS+= -g -DDEBUG
|
|
|
|
CLEANFILES= y.output
|
|
|
|
test:
|
|
./apmd -d -f etc/apmd.conf -n
|
|
|
|
.include <bsd.prog.mk>
|