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