19 lines
451 B
Makefile
19 lines
451 B
Makefile
# Makefile for uustat
|
|
# $Id: Makefile,v 1.1 1993/08/05 18:28:01 conklin Exp $
|
|
|
|
BINDIR= $(bindir)
|
|
BINOWN= $(owner)
|
|
BINGRP= dialer
|
|
BINMODE= 6555
|
|
|
|
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
|