From: Bill Joy Date: Sun, 30 Dec 1979 08:09:09 +0000 (-0800) Subject: BSD 3 development X-Git-Tag: BSD-3~243 X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/commitdiff_plain/7ed4d9e45ae4dd525b23d8e0211dc1ef0aa5da09 BSD 3 development Work on file usr/src/cmd/lpr/makefile Synthesized-from: 3bsd --- diff --git a/usr/src/cmd/lpr/makefile b/usr/src/cmd/lpr/makefile new file mode 100755 index 0000000000..a98e777434 --- /dev/null +++ b/usr/src/cmd/lpr/makefile @@ -0,0 +1,14 @@ +all: + cc -O lpd.c -o lpd + cc -O lpf.c -o lpf + cc -O lpq.c -o lpq + cc -O lpr.c -o lpr + cc -O lprm.c -o lprm +install: + install -s lpd ${DESTDIR}/usr/lib/lpd + install -s lpf ${DESTDIR}/usr/lib/lpf + install -s lpq ${DESTDIR}/usr/ucb/lpq + install -s lpr ${DESTDIR}/usr/ucb/lpr + install -s lprm ${DESTDIR}/usr/ucb/lprm +clean: + rm -f lpd lpf lpq lpr lprm