19 lines
407 B
Makefile
19 lines
407 B
Makefile
# Makefile for uustat
|
|
# $FreeBSD$
|
|
|
|
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
|