blob: 1f303bfd8ab8753216e7455206bb8acf5bb56386 (
plain) (
blame)
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
26
27
28
|
# $Id: Makefile 3653 2018-12-25 12:31:28Z jkoshy $
#
# TET-based test suites used by the Elftoolchain project.
#
TOP= ..
# Build TET and LIBTEST first.
SUBDIR+= libtest
SUBDIR+= tet
# Build tests for libraries.
SUBDIR+= libelf
SUBDIR+= libelftc
SUBDIR+= libdwarf
# Build tests for tools.
SUBDIR+= ar
SUBDIR+= elfcopy
SUBDIR+= elfdump
SUBDIR+= nm
.if !make(install)
.include "$(TOP)/mk/elftoolchain.subdir.mk"
.else
install: .SILENT .PHONY
echo Nothing to install.
.endif
|