18 lines
417 B
Makefile
18 lines
417 B
Makefile
# Makefile for uustat
|
|
# $Id: Makefile,v 1.2 1993/08/05 16:15:22 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
|