1 1.1 jkoshy # Id: Makefile 3943 2021-04-05 17:03:34Z jkoshy 2 1.1 jkoshy 3 1.1 jkoshy TOP= ../.. 4 1.1 jkoshy 5 1.1 jkoshy SRCS= elfdefinitions.m4 elfconstants.m4 6 1.1 jkoshy INCS= elfdefinitions.h 7 1.1 jkoshy INCSDIR= /usr/include/sys 8 1.1 jkoshy 9 1.1 jkoshy CLEANFILES= ${INCS} 10 1.1 jkoshy 11 1.1 jkoshy .PHONY: all clean clobber depend obj 12 1.1 jkoshy 13 1.1 jkoshy all: ${INCS} 14 1.1 jkoshy 15 1.1 jkoshy elfdefinitions.h: elfdefinitions.m4 elfconstants.m4 16 1.1 jkoshy m4 -I${.CURDIR} -D SRCDIR=${.CURDIR} ${M4FLAGS} \ 17 1.1 jkoshy elfdefinitions.m4 > ${.TARGET} 18 1.1 jkoshy 19 1.1 jkoshy depend cleandepend: 20 1.1 jkoshy 21 1.1 jkoshy clean clobber: 22 1.1 jkoshy rm -f ${CLEANFILES} 23 1.1 jkoshy 24 1.1 jkoshy .include "${TOP}/mk/elftoolchain.inc.mk" 25 1.1 jkoshy .include "${TOP}/mk/elftoolchain.m4.mk" 26