xref: /csrg-svn/old/libg/libg.tahoe/Makefile (revision 37830)
123863Smckusick#
2*37830Sbostic# Copyright (c) 1989 The Regents of the University of California.
3*37830Sbostic# All rights reserved.
423863Smckusick#
5*37830Sbostic# Redistribution and use in source and binary forms are permitted
6*37830Sbostic# provided that the above copyright notice and this paragraph are
7*37830Sbostic# duplicated in all such forms and that any documentation,
8*37830Sbostic# advertising materials, and other materials related to such
9*37830Sbostic# distribution and use acknowledge that the software was developed
10*37830Sbostic# by the University of California, Berkeley.  The name of the
11*37830Sbostic# University may not be used to endorse or promote products derived
12*37830Sbostic# from this software without specific prior written permission.
13*37830Sbostic# THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
14*37830Sbostic# IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
15*37830Sbostic# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
1631596Sbostic#
17*37830Sbostic#	@(#)Makefile	5.4 (Berkeley) 05/10/89
18*37830Sbostic#
1931596SbosticCFLAGS=	-O
2031596SbosticLIBC=	/lib/libc.a
2131596SbosticSRCS=	dbxxx.c
2231596SbosticOBJS=	dbxxx.o
2323863Smckusick
2431596Sbosticall: libg.a
2531596Sbostic
2631596Sbosticlibg.a: dbxxx.c
2729667Ssam	${CC} -E dbxxx.c | ${AS} -o libg.a
2829667Ssam
29*37830Sbosticclean:
3031596Sbostic	rm -f ${OBJS} core libg.a
3123863Smckusick
32*37830Sbosticcleandir: clean
33*37830Sbostic	rm -f ${MAN} tags .depend
34*37830Sbostic
35*37830Sbosticdepend: ${SRCS}
3631596Sbostic	mkdep ${CFLAGS} ${SRCS}
3731596Sbostic
38*37830Sbosticinstall: ${MAN}
3931596Sbostic	install -o bin -g bin -m 644 libg.a ${DESTDIR}/usr/lib/libg.a
4031596Sbostic
41*37830Sbosticlint: ${SRCS}
4231596Sbostic	lint ${CFLAGS} ${SRCS}
4331596Sbostic
44*37830Sbostictags: ${SRCS}
4531596Sbostic	ctags ${SRCS}
46