fix bogus makefiles -- didn't have sources and weren't coded properly for that

This commit is contained in:
cgd 1993-09-30 02:19:22 +00:00
parent b5f2079163
commit b12753abd4
2 changed files with 18 additions and 10 deletions

View File

@ -1,15 +1,19 @@
# Makefile for uusched
# $Id: Makefile,v 1.2 1993/08/05 16:14:03 jtc Exp $
# $Id: Makefile,v 1.3 1993/09/30 02:19:22 cgd Exp $
BINDIR= $(bindir)
PROG= uusched
SRCS=
NOMAN=
STRIP=
NOPROG=
CLEANFILES= uusched
all: ${CLEANFILES}
uusched: uusched.in
sed -e "s|@BINDIR@|$(bindir)|g" -e "s|@SBINDIR@|$(sbindir)|g" \
$(.CURDIR)/uusched.in > $(.TARGET)
install:
install ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
uusched ${DESTDIR}${BINDIR}
.include <bsd.prog.mk>

View File

@ -1,15 +1,19 @@
# Makefile for uuto
# $Id: Makefile,v 1.2 1993/08/05 16:14:06 jtc Exp $
# $Id: Makefile,v 1.3 1993/09/30 02:19:36 cgd Exp $
BINDIR= $(bindir)
PROG= uuto
SRCS=
NOMAN=
STRIP=
NOPROG=
CLEANFILES= uuto
all: ${CLEANFILES}
uuto: uuto.in
sed -e "s|@BINDIR@|$(bindir)|g" -e "s|@SBINDIR@|$(sbindir)|g" \
$(.CURDIR)/uuto.in > $(.TARGET)
install:
install ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
uuto ${DESTDIR}${BINDIR}
.include <bsd.prog.mk>