blob: db36c5c2b55e765addd324442f97dbe344e8dbb4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
.PHONY: all lib test tests clean
all: lib
lib tests:
$(MAKE) -C $@
test: tests
build/tester
clean:
$(MAKE) -C lib clean
$(MAKE) -C tests clean
rm -rf build
# Testdaten: https://excelbianalytics.com/wp/downloads-18-sample-csv-files-data-sets-for-testing-sales/
|