9c0dc173cc
specified in the top level Makefiles.
19 lines
419 B
Makefile
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>
|