mirror of
https://github.com/opnsense/src.git
synced 2026-05-04 17:05:14 -04:00
really want them) from /usr/src. This is the final version of the patches, incorporating the feedback I've received from -current.
20 lines
405 B
Makefile
20 lines
405 B
Makefile
# $Id: Makefile,v 1.1 1995/12/26 05:15:20 peter Exp $
|
|
|
|
PROG= supscan
|
|
SRCS= supscan.c
|
|
NOMAN=
|
|
|
|
LIBSRC= ${.CURDIR}/../lib
|
|
COPTS+= -DVAR_TMP -DHAS_DAEMON -I${.CURDIR} -I${LIBSRC}
|
|
COPTS+= -DRENAMELOG=\"/var/log/sup.rename\"
|
|
|
|
.if exists(${.OBJDIR}/../lib)
|
|
LIBOBJ= ${.OBJDIR}/../lib
|
|
.else
|
|
LIBOBJ= ${LIBSRC}
|
|
.endif
|
|
|
|
DPADD+= $(LIBCRYPT) $(LIBOBJ)/libsup.a
|
|
LDADD+= -L${LIBOBJ} -lsup -lcrypt
|
|
|
|
.include <bsd.prog.mk>
|