date and time created 85/09/10 11:51:49 by mckusick
authorKirk McKusick <mckusick@ucbvax.Berkeley.EDU>
Wed, 11 Sep 1985 02:51:49 +0000 (18:51 -0800)
committerKirk McKusick <mckusick@ucbvax.Berkeley.EDU>
Wed, 11 Sep 1985 02:51:49 +0000 (18:51 -0800)
SCCS-vsn: usr.bin/patch/Makefile 5.1

usr/src/usr.bin/patch/Makefile [new file with mode: 0644]

diff --git a/usr/src/usr.bin/patch/Makefile b/usr/src/usr.bin/patch/Makefile
new file mode 100644 (file)
index 0000000..9b3dd03
--- /dev/null
@@ -0,0 +1,21 @@
+#      @(#)Makefile    5.1 (Berkeley) %G%
+#
+# $Header: Makefile,v 1.3 85/03/26 15:03:26 lwall Exp $
+
+BINDIR = $(DESTDIR)/usr/new
+
+patch: patch.c
+       cc patch.c -O -o patch
+
+install:
+       install -c patch $(BINDIR)
+       install -c -m 444 patch.n ${DESTDIR}/usr/man/mann/patch.n
+
+clean:
+       rm patch
+
+shar:
+       shar patch.man patch.c Makefile >patch.kit
+
+lint:
+       lint -phbvxac patch.c