1# @(#)Makefile 8.1 (Berkeley) 06/06/93 2 3PROG= px_header 4SRCDIR= ${.CURDIR}/../src 5CFLAGS+=-I${SRCDIR} 6LDFLAGS+=-N 7SRCS= px_header.c 8OBJS+= config.o 9BINDIR= /usr/libexec/pascal 10NOMAN= noman 11CLEANFILES+=config.c 12 13beforeinstall: 14 strip px_header 15 mv px_header temp 16 dd if=temp of=px_header conv=sync 17 rm -f temp 18 19WHOAMI= pi 20.include "${SRCDIR}/config.include" 21.include <bsd.prog.mk> 22