mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-04 23:19:00 +00:00
19 lines
382 B
Makefile
19 lines
382 B
Makefile
# Makefile for uuchk
|
|
# $Id: Makefile,v 1.2 1994/05/31 05:11:12 ache Exp $
|
|
|
|
BINDIR= $(sbindir)
|
|
BINOWN= $(owner)
|
|
BINGRP= $(group)
|
|
BINMODE= 550
|
|
|
|
PROG= uuchk
|
|
SRCS= uuchk.c
|
|
LDADD+= $(LIBUNIX) $(LIBUUCONF) $(LIBUUCP)
|
|
DPADD+= $(LIBUNIX) $(LIBUUCONF) $(LIBUUCP)
|
|
CFLAGS+= -I$(.CURDIR)/../common_sources\
|
|
-DVERSION=\"$(VERSION)\"
|
|
|
|
NOMAN= noman
|
|
|
|
.include <bsd.prog.mk>
|