aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorThomas Schmucker <ts@its1.de>2026-06-21 17:20:13 +0200
committerThomas Schmucker <ts@its1.de>2026-06-21 17:20:13 +0200
commit08a5f3441675c446482b473777cbba53d5191f20 (patch)
treebb462b2439317d8c3be3e542501aa3211357045c /makefile
parent7d956c533e9fd7d3bbb9a4a8b7f89f0fe54d4bc3 (diff)
downloadlibcsv-08a5f3441675c446482b473777cbba53d5191f20.tar.gz
libcsv-08a5f3441675c446482b473777cbba53d5191f20.tar.bz2
libcsv-08a5f3441675c446482b473777cbba53d5191f20.zip
rework: add testing frameworkrework
Diffstat (limited to 'makefile')
-rw-r--r--makefile11
1 files changed, 5 insertions, 6 deletions
diff --git a/makefile b/makefile
index db36c5c..1bda58d 100644
--- a/makefile
+++ b/makefile
@@ -1,16 +1,15 @@
1.PHONY: all lib test tests clean 1.PHONY: all libcsv test tests clean
2 2
3all: lib 3all: libcsv
4 4
5lib tests: 5libcsv tests:
6 $(MAKE) -C $@ 6 $(MAKE) -C $@
7 7
8test: tests 8test: tests
9 build/tester 9 tests/bin/tester --gtest_shuffle
10 10
11clean: 11clean:
12 $(MAKE) -C lib clean 12 $(MAKE) -C libcsv clean
13 $(MAKE) -C tests clean 13 $(MAKE) -C tests clean
14 rm -rf build
15 14
16# Testdaten: https://excelbianalytics.com/wp/downloads-18-sample-csv-files-data-sets-for-testing-sales/ 15# Testdaten: https://excelbianalytics.com/wp/downloads-18-sample-csv-files-data-sets-for-testing-sales/