diff options
| author | Prashanth Mundkur <prashanth@riscv.org> | 2026-03-24 11:01:15 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-24 09:01:15 -0700 |
| commit | 933a897d8631773f385d45938facc466dddc7514 (patch) | |
| tree | 6c3f3394c9db25e7de4ed83975868297c07cf238 | |
| parent | f443f4486085132552c9b43527fb0be5efa3cc0c (diff) | |
| download | riscv-tests-933a897d8631773f385d45938facc466dddc7514.tar.gz riscv-tests-933a897d8631773f385d45938facc466dddc7514.tar.bz2 riscv-tests-933a897d8631773f385d45938facc466dddc7514.zip | |
Fix the install target. (#649)
Exclude incidental files from install, e.g. isa/{.gitignore,Makefile} and benchmarks/{Makefile,readme.txt}.
| -rw-r--r-- | Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 831d25a..ff88020 100644 --- a/Makefile.in +++ b/Makefile.in @@ -17,8 +17,8 @@ all: benchmarks isa install: all install -d $(instbasedir)/share/riscv-tests/isa install -d $(instbasedir)/share/riscv-tests/benchmarks - install -p -m 644 `find isa -maxdepth 1 -type f` $(instbasedir)/share/riscv-tests/isa - install -p -m 644 `find benchmarks -maxdepth 1 -type f` $(instbasedir)/share/riscv-tests/benchmarks + install -p -m 644 `find isa -maxdepth 1 -type f \( -executable -o -name '*.dump' \)` $(instbasedir)/share/riscv-tests/isa + install -p -m 644 `find benchmarks -maxdepth 1 -type f \( -executable -o -name '*.dump' \)` $(instbasedir)/share/riscv-tests/benchmarks benchmarks: mkdir -p benchmarks |
