17 lines
359 B
Makefile
17 lines
359 B
Makefile
# Makefile for uulog
|
|
# $Id: Makefile,v 1.2 1993/08/05 16:15:14 jtc Exp $
|
|
|
|
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
|