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