mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2025-01-01 00:18:15 +01:00
17 lines
314 B
Makefile
17 lines
314 B
Makefile
# Makefile for uulog
|
|
# $Id$
|
|
|
|
BINDIR= $(bindir)
|
|
|
|
PROG= uulog
|
|
SRCS= uulog.c log.c
|
|
LDADD+= $(LIBUNIX) $(LIBUUCONF) $(LIBUUCP)
|
|
DPADD+= $(LIBUNIX) $(LIBUUCONF) $(LIBUUCP)
|
|
CFLAGS+= -I$(.CURDIR)/../common_sources\
|
|
-DVERSION=\"$(VERSION)\"
|
|
|
|
NOMAN= noman
|
|
|
|
.include <bsd.prog.mk>
|
|
.PATH: $(.CURDIR)/../common_sources
|