summaryrefslogtreecommitdiff
path: root/Makefile
blob: e9c0edb785e7c8e76c490044c6fe22e0b7c1c513 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# SPDX-License-Identifier: CC0-1.0

SUBDIRS=crc tests

recursive=all clean install

all:

$(recursive):
	@target=$@ ; \
	for subdir in $(SUBDIRS); do \
		echo "Making $$target in $$subdir" ; \
		$(MAKE) -C $$subdir $$target; \
	done