projects
/
renesas
/
vsp-tests.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
tests: Add SPDX headers to vsp-unit-test-0026.sh
[renesas/vsp-tests.git]
/
Makefile
1
# SPDX-License-Identifier: CC0-1.0
2
3
SUBDIRS=data scripts src tests
4
5
recursive=all clean install
6
7
all:
8
9
$(recursive):
10
@target=$@ ; \
11
for subdir in $(SUBDIRS); do \
12
echo "Making $$target in $$subdir" ; \
13
$(MAKE) -C $$subdir $$target; \
14
done