date and time created 88/12/04 15:24:12 by minshall
[unix-history] / usr / src / usr.bin / ctags / Makefile
CommitLineData
d40f5bdc 1#
d3438a68
KB
2# Copyright (c) 1988 The Regents of the University of California.
3# All rights reserved.
d40f5bdc 4#
d3438a68
KB
5# Redistribution and use in source and binary forms are permitted
6# provided that the above copyright notice and this paragraph are
7# duplicated in all such forms and that any documentation,
8# advertising materials, and other materials related to such
9# distribution and use acknowledge that the software was developed
10# by the University of California, Berkeley. The name of the
11# University may not be used to endorse or promote products derived
12# from this software without specific prior written permission.
13# THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
14# IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
15# WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
16#
17# @(#)Makefile 5.4 (Berkeley) %G%
d40f5bdc
KB
18#
19DESTDIR=
20CFLAGS=-O -I.
51a16129 21LIBC= /lib/libc.a
d40f5bdc
KB
22SRCS= C.c ctags.c fortran.c lisp.c print.c tree.c yacc.c
23OBJS= C.o ctags.o fortran.o lisp.o print.o tree.o yacc.o
d3438a68 24MAN= ctags.0
d40f5bdc 25
51a16129
KB
26all: ctags
27
28ctags: ${OBJS} ${LIBC}
d40f5bdc
KB
29 ${CC} ${CFLAGS} -o $@ ${OBJS}
30
d3438a68 31clean:
51a16129
KB
32 rm -f ${OBJS} core ctags
33
d3438a68
KB
34cleandir: clean
35 rm -f ${MAN} tags .depend
d40f5bdc 36
d3438a68 37depend: ${SRCS}
51a16129 38 mkdep ${CFLAGS} ${SRCS}
d40f5bdc 39
d3438a68
KB
40install: ${MAN}
41 install -s -o bin -g bin -m 755 ctags ${DESTDIR}/usr/ucb
42 install -c -o bin -g bin -m 444 ${MAN} ${DESTDIR}/usr/man/cat1
43
44lint: ${SRCS}
45 lint ${CFLAGS} ${SRCS}
46
47tags: ${SRCS}
48 ctags ${SRCS}