minix/drivers/filter/Makefile

15 lines
216 B
Makefile
Raw Normal View History

2009-12-02 11:08:58 +01:00
# Makefile for filter driver
PROG= filter
SRCS= main.c sum.c driver.c util.c optset.c crc.c md5.c
2009-12-02 11:08:58 +01:00
DPADD+= ${LIBSYS}
LDADD+= -lsys
2009-12-02 11:08:58 +01:00
MAN=
2009-12-02 11:08:58 +01:00
BINDIR?= /usr/sbin
2009-12-02 11:08:58 +01:00
CPPFLAGS+= -DDEBUG=1 -DDEBUG2=0
2009-12-02 11:08:58 +01:00
.include <minix.prog.mk>