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