123863Smckusick# 2*37829Sbostic# Copyright (c) 1989 The Regents of the University of California. 3*37829Sbostic# All rights reserved. 423863Smckusick# 5*37829Sbostic# Redistribution and use in source and binary forms are permitted 6*37829Sbostic# provided that the above copyright notice and this paragraph are 7*37829Sbostic# duplicated in all such forms and that any documentation, 8*37829Sbostic# advertising materials, and other materials related to such 9*37829Sbostic# distribution and use acknowledge that the software was developed 10*37829Sbostic# by the University of California, Berkeley. The name of the 11*37829Sbostic# University may not be used to endorse or promote products derived 12*37829Sbostic# from this software without specific prior written permission. 13*37829Sbostic# THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR 14*37829Sbostic# IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED 15*37829Sbostic# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 1631598Sbostic# 17*37829Sbostic# @(#)Makefile 5.3 (Berkeley) 05/10/89 18*37829Sbostic# 1931598SbosticCFLAGS= -O 2031598SbosticLIBC= /lib/libc.a 2131598SbosticSRCS= 2231598SbosticOBJS= 2323863Smckusick 2431598Sbosticall: libg.a 2523863Smckusick 2631598Sbosticlibg.a: dbxxx.s 2731598Sbostic ${AS} dbxxx.s -o $@ 2831598Sbostic 29*37829Sbosticclean: 3031598Sbostic rm -f ${OBJS} core libg.a 3131598Sbostic 32*37829Sbosticcleandir: clean 33*37829Sbostic rm -f ${MAN} tags .depend 34*37829Sbostic 35*37829Sbosticinstall: ${MAN} 3631598Sbostic install -o bin -g bin -m 644 libg.a ${DESTDIR}/usr/lib/libg.a 3731598Sbostic 38*37829Sbosticdepend lint tags FRC: 39