386BSD 0.1 development
authorWilliam F. Jolitz <wjolitz@soda.berkeley.edu>
Tue, 12 Mar 1991 17:54:06 +0000 (09:54 -0800)
committerWilliam F. Jolitz <wjolitz@soda.berkeley.edu>
Tue, 12 Mar 1991 17:54:06 +0000 (09:54 -0800)
Work on file usr/src/usr.bin/ar/Makefile

Co-Authored-By: Lynne Greer Jolitz <ljolitz@cardio.ucsf.edu>
Synthesized-from: 386BSD-0.1

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

diff --git a/usr/src/usr.bin/ar/Makefile b/usr/src/usr.bin/ar/Makefile
new file mode 100644 (file)
index 0000000..d79757d
--- /dev/null
@@ -0,0 +1,16 @@
+#      @(#)Makefile    5.8 (Berkeley) 3/10/91
+
+PROG=  ar
+CFLAGS+=-I${.CURDIR}
+SRCS=  append.c ar.c archive.c contents.c delete.c extract.c misc.c \
+       move.c print.c replace.c 
+MAN1=  ar.0
+CLEANFILES=ar.5.0
+
+ar.0: ar.5.0
+
+afterinstall:
+       install -c -o ${MANOWN} -g ${MANGRP} -m ${MANMODE} ar.5.0 \
+           ${DESTDIR}${MANDIR}5/ar.0
+
+.include <bsd.prog.mk>