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