1# $NetBSD: Makefile,v 1.1 2021/04/06 19:40:19 jkoshy Exp $ 2 3.include <bsd.own.mk> 4 5TOP= ${.CURDIR}/../../dist 6SRCDIR= ${TOP}/common/sys 7 8.PATH: ${SRCDIR} 9 10INCS= elfdefinitions.h 11INCSDIR= /usr/include/sys 12 13elfdefinitions.h: elfdefinitions.m4 elfconstants.m4 14 ${TOOL_M4} -I${SRCDIR} -D SRCDIR=${SRCDIR} ${M4FLAGS} \ 15 elfdefinitions.m4 > ${.TARGET} 16 17.PHONY: all clean clobber depend 18 19all depend: elfdefinitions.h 20 21clean clobber: 22 rm -f ${INCS} 23 24cleandepend: 25 rm -f ${.OBJDIR}/.depend 26 27.include <bsd.inc.mk> 28.include <bsd.obj.mk> 29