Home | History | Annotate | Line # | Download | only in sys
      1 # Id: Makefile 4199 2025-08-09 21:03:54Z jkoshy
      2 
      3 TOP=	../..
      4 
      5 SRCS=		elfdefinitions.m4 elfconstants.m4
      6 INCS=		elfdefinitions.h
      7 INCSDIR=	/usr/include/sys
      8 
      9 CLEANFILES=	${INCS}
     10 
     11 .PHONY:	all clean clobber depend obj
     12 
     13 all:	${INCS}
     14 
     15 elfdefinitions.h:	elfdefinitions.m4 elfconstants.m4
     16 	m4 -I${.CURDIR} ${M4FLAGS} elfdefinitions.m4 > ${.TARGET}
     17 
     18 depend cleandepend:
     19 
     20 clean clobber:
     21 	rm -f ${CLEANFILES}
     22 
     23 .include "${TOP}/mk/elftoolchain.inc.mk"
     24 .include "${TOP}/mk/elftoolchain.m4.mk"
     25