Makefile 403 B

12345678910111213141516171819
  1. # ssh-sentryd Makefile
  2. PREFIX?= /usr/local
  3. BINDIR?= ${PREFIX}/sbin
  4. DAEMON?= ${BINDIR}/${PROG}
  5. PROG= ssh-sentryd
  6. SRCS= ssh-sentry.c log.c
  7. MAN= ssh-sentryd.8
  8. CFLAGS+= -Wall -I${.CURDIR}
  9. CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes
  10. CFLAGS+= -Wmissing-declarations
  11. CFLAGS+= -Wshadow -Wpointer-arith -Wsign-compare -Wcast-qual
  12. LDADD+= -lutil
  13. .include <bsd.prog.mk>