136024Sbostic# 236136Sbostic# 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 736136Sbostic# duplicated in all such forms and that any documentation, 836136Sbostic# advertising materials, and other materials related to such 936136Sbostic# distribution and use acknowledge that the software was developed 1036136Sbostic# by the University of California, Berkeley. The name of the 1136136Sbostic# University may not be used to endorse or promote products derived 1236136Sbostic# from this software without specific prior written permission. 1336136Sbostic# THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR 1436136Sbostic# IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED 1536136Sbostic# WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. 1636024Sbostic# 17*37798Sbostic# @(#)Makefile 5.3 (Berkeley) 05/10/89 1836024Sbostic# 1936024Sbostic 2036136SbosticCFLAGS= -O 2136136SbosticLIBC= /lib/libc.a 2236136SbosticSRCS= fp.c 2336136SbosticOBJS= 2436136SbosticMAN= 2536136Sbostic 2636136Sbosticall: fp 2736136Sbostic 2836136Sbosticfp: ${LIBC} 2936136Sbostic ${CC} -o $@ ${CFLAGS} $@.c 3036136Sbostic 3136136Sbosticclean: 3236136Sbostic rm -f ${OBJS} core fp 3336136Sbostic 3436136Sbosticcleandir: clean 3536136Sbostic rm -f ${MAN} tags .depend 3636136Sbostic 3736136Sbosticdepend: ${SRCS} 3836136Sbostic mkdep -p ${CFLAGS} ${SRCS} 3936136Sbostic 4036136Sbosticinstall: 41*37798Sbostic install -s -o bin -g bin -m 755 fp ${DESTDIR}/usr/bin 4236136Sbostic 4336136Sbosticlint: ${SRCS} 4436136Sbostic lint ${CFLAGS} ${SRCS} 4536136Sbostic 4636136Sbostictags: ${SRCS} 4736136Sbostic ctags ${SRCS} 48