freebsd-skq/gnu/libexec/uucp/uusched/Makefile
Bruce Evans 9c0dc173cc Change install' to ${INSTALL}' so that default install flags can be
specified in the top level Makefiles.
1995-07-25 00:37:58 +00:00

19 lines
419 B
Makefile

# Makefile for uusched
# $Id: Makefile,v 1.7 1995/05/13 12:57:43 ache Exp $
BINDIR= $(bindir)
CLEANFILES+= $(ONESHPROG)
ONESHPROG= uusched
all: $(ONESHPROG)
$(ONESHPROG): $(ONESHPROG).in Makefile
sed -e "s|@SBINDIR@|$(libxdir)|g" \
$(.ALLSRC:N*Makefile) > $(.TARGET)
beforeinstall:
${INSTALL} -c -o $(BINOWN) -g $(BINGRP) -m $(BINMODE) \
$(ONESHPROG) $(DESTDIR)$(BINDIR)/$(ONESHPROG)
.include <bsd.prog.mk>