mirror of
https://github.com/opnsense/src.git
synced 2026-02-22 17:32:57 -05:00
18 lines
407 B
Makefile
18 lines
407 B
Makefile
# Makefile for uuto
|
|
# $Id: Makefile,v 1.4 1995/01/24 17:58:47 bde Exp $
|
|
|
|
BINDIR= $(bindir)
|
|
CLEANFILES+= $(ONESHPROG)
|
|
ONESHPROG= uuto
|
|
|
|
all: $(ONESHPROG)
|
|
|
|
$(ONESHPROG): $(ONESHPROG).in Makefile
|
|
sed -e "s|@BINDIR@|$(bindir)|g" \
|
|
$(.ALLSRC:N*Makefile) > $(.TARGET)
|
|
|
|
beforeinstall:
|
|
install -c -o $(BINOWN) -g $(BINGRP) -m $(BINMODE) \
|
|
$(ONESHPROG) $(DESTDIR)$(BINDIR)/$(ONESHPROG)
|
|
|
|
.include <bsd.prog.mk>
|