1*62115Sbostic#	@(#)Makefile	8.1 (Berkeley) 06/06/93
23572Smckusick
344611Sbosticall: pcexterns.o
43572Smckusick
544611Sbosticpcexterns.o: ${.CURDIR}/pcexterns.awk ${LIBPC} ${LIBC} ${LIBM}
644611Sbostic	(echo -n ${LIBPC}:; nm -go ${LIBPC}) \
744611Sbostic	    | awk -f ${.CURDIR}/pcexterns.awk \
844611Sbostic	    | sort -t\" +1 -2 -u > pcexterns.s
944611Sbostic	(echo -n ${LIBC}:; nm -go ${LIBC}) \
1044611Sbostic	    | awk -f ${.CURDIR}/pcexterns.awk \
1144611Sbostic	    | sort -t\" +1 -2 -u >> pcexterns.s
1244611Sbostic	(echo -n ${LIBM}:; nm -go ${LIBM}) \
1344611Sbostic	    | awk -f ${.CURDIR}/pcexterns.awk \
1444611Sbostic	    | sort -t\" +1 -2 -u >> pcexterns.s
1544611Sbostic	${AS} pcexterns.s -o ${.TARGET}
1644611Sbostic	rm -f pcexterns.s
1715826Saoki
1844611Sbosticclean cleandir:
1944611Sbostic	rm -f pcexterns.o pcexterns.s
203572Smckusick
2144611Sbosticdepend lint:
2215826Saoki
2344611Sbosticinstall:
2444611Sbostic	install -o ${BINOWN} -g ${BINGRP} -m 444 pcexterns.o \
2544611Sbostic	    ${DESTDIR}/usr/lib
263572Smckusick
2744611Sbostic.include <bsd.prog.mk>
28