xref: /netbsd-src/external/bsd/elftoolchain/common/sys/Makefile (revision d40876c8a3654efb925575de3908224f641d1888)
1*d40876c8Schristos# $NetBSD: Makefile,v 1.2 2024/03/27 21:55:35 christos Exp $
2f2d414b9Sjkoshy
3f2d414b9Sjkoshy.include <bsd.own.mk>
4f2d414b9Sjkoshy
5f2d414b9SjkoshyTOP=	${.CURDIR}/../../dist
6f2d414b9SjkoshySRCDIR=	${TOP}/common/sys
7f2d414b9Sjkoshy
8f2d414b9Sjkoshy.PATH:	${SRCDIR}
9f2d414b9Sjkoshy
10f2d414b9SjkoshyINCS=		elfdefinitions.h
11f2d414b9SjkoshyINCSDIR=	/usr/include/sys
12f2d414b9Sjkoshy
13f2d414b9Sjkoshyelfdefinitions.h:	elfdefinitions.m4 elfconstants.m4
14*d40876c8Schristos	${_MKTARGET_CREATE}
15f2d414b9Sjkoshy	${TOOL_M4} -I${SRCDIR} -D SRCDIR=${SRCDIR} ${M4FLAGS} \
16f2d414b9Sjkoshy		elfdefinitions.m4 > ${.TARGET}
17f2d414b9Sjkoshy
18f2d414b9Sjkoshy.PHONY:	all clean clobber depend
19f2d414b9Sjkoshy
20f2d414b9Sjkoshyall depend:	elfdefinitions.h
21f2d414b9Sjkoshy
22f2d414b9Sjkoshyclean clobber:
23f2d414b9Sjkoshy	rm -f ${INCS}
24f2d414b9Sjkoshy
25f2d414b9Sjkoshycleandepend:
26f2d414b9Sjkoshy	rm -f ${.OBJDIR}/.depend
27f2d414b9Sjkoshy
28f2d414b9Sjkoshy.include <bsd.inc.mk>
29f2d414b9Sjkoshy.include <bsd.obj.mk>
30