xref: /csrg-svn/old/lisp/fp/fp.tahoe/Makefile (revision 36136)
136024Sbostic#
2*36136Sbostic# Copyright (c) 1988 The Regents of the University of California.
336024Sbostic# All rights reserved.
436024Sbostic#
536024Sbostic# Redistribution and use in source and binary forms are permitted
636024Sbostic# provided that the above copyright notice and this paragraph are
7*36136Sbostic# duplicated in all such forms and that any documentation,
8*36136Sbostic# advertising materials, and other materials related to such
9*36136Sbostic# distribution and use acknowledge that the software was developed
10*36136Sbostic# by the University of California, Berkeley.  The name of the
11*36136Sbostic# University may not be used to endorse or promote products derived
12*36136Sbostic# from this software without specific prior written permission.
13*36136Sbostic# THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
14*36136Sbostic# IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
15*36136Sbostic# WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
1636024Sbostic#
17*36136Sbostic#	@(#)Makefile	5.2 (Berkeley) 10/25/88
1836024Sbostic#
1936024Sbostic
20*36136SbosticCFLAGS=	-O
21*36136SbosticLIBC=	/lib/libc.a
22*36136SbosticSRCS=	fp.c
23*36136SbosticOBJS=
24*36136SbosticMAN=
25*36136Sbostic
26*36136Sbosticall: fp
27*36136Sbostic
28*36136Sbosticfp: ${LIBC}
29*36136Sbostic	${CC} -o $@ ${CFLAGS} $@.c
30*36136Sbostic
31*36136Sbosticclean:
32*36136Sbostic	rm -f ${OBJS} core fp
33*36136Sbostic
34*36136Sbosticcleandir: clean
35*36136Sbostic	rm -f ${MAN} tags .depend
36*36136Sbostic
37*36136Sbosticdepend: ${SRCS}
38*36136Sbostic	mkdep -p ${CFLAGS} ${SRCS}
39*36136Sbostic
40*36136Sbosticinstall:
41*36136Sbostic	install -s -o bin -g bin -m 755 fp ${DESTDIR}/usr/ucb
42*36136Sbostic
43*36136Sbosticlint: ${SRCS}
44*36136Sbostic	lint ${CFLAGS} ${SRCS}
45*36136Sbostic
46*36136Sbostictags: ${SRCS}
47*36136Sbostic	ctags ${SRCS}
48