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