xref: /netbsd-src/external/bsd/elftoolchain/common/Makefile (revision f2d414b94a3d7b324712a27fe26aaf72193dea19)
1*f2d414b9Sjkoshy# $NetBSD: Makefile,v 1.1 2021/04/06 19:40:19 jkoshy Exp $
2*f2d414b9Sjkoshy
3*f2d414b9Sjkoshy.include <bsd.own.mk>
4*f2d414b9Sjkoshy
5*f2d414b9SjkoshyTOP=	${.CURDIR}/../dist
6*f2d414b9SjkoshySRCDIR=	${TOP}/common
7*f2d414b9Sjkoshy
8*f2d414b9Sjkoshy.PATH:	${SRCDIR}
9*f2d414b9Sjkoshy
10*f2d414b9SjkoshySUBDIR=		sys
11*f2d414b9Sjkoshy
12*f2d414b9SjkoshyINCS=		elfdefinitions.h
13*f2d414b9SjkoshyINCSDIR=	/usr/include
14*f2d414b9Sjkoshy
15*f2d414b9Sjkoshy.PHONY:	all clean clobber depend obj
16*f2d414b9Sjkoshy
17*f2d414b9Sjkoshyall depend:
18*f2d414b9Sjkoshy
19*f2d414b9Sjkoshyclean clobber:
20*f2d414b9Sjkoshy	rm -f ${CLEANFILES}
21*f2d414b9Sjkoshy
22*f2d414b9Sjkoshycleandepend:
23*f2d414b9Sjkoshy	rm -f ${.OBJDIR}/.depend
24*f2d414b9Sjkoshy
25*f2d414b9Sjkoshy.include <bsd.inc.mk>
26*f2d414b9Sjkoshy.include <bsd.subdir.mk>
27