BSD 3 development
authorBill Joy <wnj@ucbvax.Berkeley.EDU>
Sun, 30 Dec 1979 08:09:09 +0000 (00:09 -0800)
committerBill Joy <wnj@ucbvax.Berkeley.EDU>
Sun, 30 Dec 1979 08:09:09 +0000 (00:09 -0800)
Work on file usr/src/cmd/lpr/makefile

Synthesized-from: 3bsd

usr/src/cmd/lpr/makefile [new file with mode: 0755]

diff --git a/usr/src/cmd/lpr/makefile b/usr/src/cmd/lpr/makefile
new file mode 100755 (executable)
index 0000000..a98e777
--- /dev/null
@@ -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