BSD 4_1c_2 development
authorCSRG <csrg@ucbvax.Berkeley.EDU>
Fri, 11 Feb 1983 06:05:46 +0000 (22:05 -0800)
committerCSRG <csrg@ucbvax.Berkeley.EDU>
Fri, 11 Feb 1983 06:05:46 +0000 (22:05 -0800)
Work on file usr/src/ucb/sysline/RCS/Makefile,v

Synthesized-from: CSRG/cd1/4.1c.2

usr/src/ucb/sysline/RCS/Makefile,v [new file with mode: 0644]

diff --git a/usr/src/ucb/sysline/RCS/Makefile,v b/usr/src/ucb/sysline/RCS/Makefile,v
new file mode 100644 (file)
index 0000000..96dd57a
--- /dev/null
@@ -0,0 +1,62 @@
+head     1.2;
+access   ;
+symbols  ;
+locks    ; strict;
+comment  @@;
+
+
+1.2
+date     83.02.10.02.15.06;  author layer;  state Exp;
+branches ;
+next     1.1;
+
+1.1
+date     83.02.08.11.35.39;  author jkf;  state Exp;
+branches ;
+next     ;
+
+
+desc
+@@
+
+
+1.2
+log
+@fixed DESTDIR and "make install"
+@
+text
+@# $Header: /usr/src/ucb/sysline/RCS/Makefile,v 1.1 83/02/08 11:35:39 jkf Exp $
+#  See the sysline program source for options you may want to modify
+#
+DESTDIR =
+
+CFLAGS = -O -n
+
+.DEFAULT:sysline
+
+sysline: sysline.c
+       ${CC} ${CFLAGS} -o sysline sysline.c -lcurses -ltermlib
+
+install: sysline
+       install -s sysline $(DESTDIR)/usr/ucb
+
+clean:
+       rm -f sysline
+@
+
+
+1.1
+log
+@Initial revision
+@
+text
+@d1 1
+a1 1
+# $Header$
+d4 1
+a4 1
+DESTDIR = /usr/ucb
+d14 1
+a14 1
+       install -c -s sysline $(DESTDIR)
+@