date and time created 87/03/16 18:00:32 by bostic
authorKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Tue, 17 Mar 1987 10:00:32 +0000 (02:00 -0800)
committerKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Tue, 17 Mar 1987 10:00:32 +0000 (02:00 -0800)
SCCS-vsn: usr.bin/ctags/Makefile 5.1

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

diff --git a/usr/src/usr.bin/ctags/Makefile b/usr/src/usr.bin/ctags/Makefile
new file mode 100644 (file)
index 0000000..8b23345
--- /dev/null
@@ -0,0 +1,28 @@
+#
+# Copyright (c) 1980 Regents of the University of California.
+# All rights reserved.  The Berkeley software License Agreement
+# specifies the terms and conditions for redistribution.
+#
+#      @(#)Makefile    5.1 (Berkeley) %G%
+#
+DESTDIR=
+CFLAGS=-O -I.
+SRCS=  C.c ctags.c fortran.c lisp.c print.c tree.c yacc.c
+OBJS=  C.o ctags.o fortran.o lisp.o print.o tree.o yacc.o
+
+ctags: ${OBJS}
+       ${CC} ${CFLAGS} -o $@ ${OBJS}
+
+install: ctags
+       install -o root -g staff -m 755 -s ctags ${DESTDIR}/usr/ucb
+
+clean:
+       rm -f ctags *.o core
+
+lint:
+       lint -I. -chapbx ${SRCS}
+
+tags:
+       ctags -dt ${SRCS}
+
+${OBJS}: ctags.h