1*d72e1298Sjkoshy# Id: Makefile 3944 2021-04-10 10:19:00Z jkoshy 2e9cacda8Sjkoshy 3e9cacda8SjkoshyTOP= ../.. 4e9cacda8Sjkoshy 5e9cacda8SjkoshySRCS= elfdefinitions.m4 elfconstants.m4 6e9cacda8SjkoshyINCS= elfdefinitions.h 7e9cacda8SjkoshyINCSDIR= /usr/include/sys 8e9cacda8Sjkoshy 9e9cacda8SjkoshyCLEANFILES= ${INCS} 10e9cacda8Sjkoshy 11e9cacda8Sjkoshy.PHONY: all clean clobber depend obj 12e9cacda8Sjkoshy 13e9cacda8Sjkoshyall: ${INCS} 14e9cacda8Sjkoshy 15e9cacda8Sjkoshyelfdefinitions.h: elfdefinitions.m4 elfconstants.m4 16e9cacda8Sjkoshy m4 -I${.CURDIR} -D SRCDIR=${.CURDIR} ${M4FLAGS} \ 17e9cacda8Sjkoshy elfdefinitions.m4 > ${.TARGET} 18e9cacda8Sjkoshy 19e9cacda8Sjkoshydepend cleandepend: 20e9cacda8Sjkoshy 21e9cacda8Sjkoshyclean clobber: 22e9cacda8Sjkoshy rm -f ${CLEANFILES} 23e9cacda8Sjkoshy 24e9cacda8Sjkoshy.include "${TOP}/mk/elftoolchain.inc.mk" 25e9cacda8Sjkoshy.include "${TOP}/mk/elftoolchain.m4.mk" 26