18 lines
419 B
Makefile
18 lines
419 B
Makefile
# Makefile for uustat
|
|
# $Id: Makefile,v 1.3 1994/10/24 22:29:40 jtc Exp $
|
|
|
|
BINDIR= $(bindir)
|
|
BINOWN= $(owner)
|
|
BINMODE= 4555
|
|
|
|
PROG= uustat
|
|
SRCS= uustat.c util.c log.c copy.c
|
|
LDADD+= $(LIBUNIX) $(LIBUUCONF) $(LIBUUCP)
|
|
DPADD+= $(LIBUNIX) $(LIBUUCONF) $(LIBUUCP)
|
|
CFLAGS+= -I$(.CURDIR)/../common_sources \
|
|
-DOWNER=\"$(owner)\" \
|
|
-DVERSION=\"$(VERSION)\"
|
|
|
|
.include <bsd.prog.mk>
|
|
.PATH: $(.CURDIR)/../common_sources
|