xref: /original-bsd/usr.sbin/config/Makefile (revision 9a77813a)
1#
2# Copyright (c) 1988 Regents of the University of California.
3# All rights reserved.
4#
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.8 (Berkeley) 10/25/88
18#
19CFLAGS=	-O
20LIBC=	/lib/libc.a
21LIBS=	-ll
22SRCS=	y.tab.c main.c lex.yy.c mkioconf.c mkmakefile.c \
23	mkglue.c mkheaders.c mkswapconf.c
24OBJS=	y.tab.o main.o lex.yy.o mkioconf.o mkmakefile.o \
25	mkglue.o mkheaders.o mkswapconf.o
26MAN=	config.0
27
28all: config
29
30config: ${OBJS} ${LIBC}
31	${CC} -o $@ ${OBJS} ${LIBS}
32
33lex.yy.c: config.l
34	lex config.l
35
36y.tab.h:
37	yacc -d config.y
38
39y.tab.c: config.y
40	yacc config.y
41
42clean:
43	rm -f ${OBJS} lex.yy.c y.tab.c y.tab.h config core
44
45cleandir: clean
46	rm -f ${MAN} tags .depend
47
48depend: y.tab.h ${SRCS}
49	mkdep ${CFLAGS} ${SRCS}
50
51install: ${MAN}
52	install -s -o bin -g bin -m 755 config ${DESTDIR}/etc/config
53	install -c -o bin -g bin -m 444 ${MAN} ${DESTDIR}/usr/man/cat8
54
55lint: ${SRCS}
56	lint ${CFLAGS} ${SRCS}
57
58tags: ${SRCS}
59	ctags ${SRCS}
60