1TARGETS=/tmp/lockf 2 3all: ${TARGETS} 4 5/tmp/lockf: lockf.c 6 ${CC} ${CFLAGS} ${.ALLSRC} -o ${.TARGET} 7 8clean: 9 rm -f ${TARGETS} 10