diff options
| author | Jan Tuomi <jans.tuomi@gmail.com> | 2024-02-04 15:25:15 +0200 |
|---|---|---|
| committer | Jan Tuomi <jans.tuomi@gmail.com> | 2024-02-04 15:34:54 +0200 |
| commit | b8cc2c18d9bc0292626a6b84e76fb39c1cd4b757 (patch) | |
| tree | 9b3a226d22cac45929f82f05c9d721ee5fc52d2b /Makefile | |
| parent | 0e855ea96096fd1d429ae0c9bae265c15abcc887 (diff) | |
Add `make test`, refactor tests
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -14,6 +14,7 @@ all: @echo " dynamic - Build the binary without static linking." @echo " install - Copy the binary to the install PREFIX." @echo " deps - Install dependencies from requirements.list." + @echo " test - Run unit tests and exit." @echo " clean - Remove built binary and other generated files." @echo "" @echo "Specify a target to make." @@ -39,6 +40,9 @@ install: deps: chicken-install -from-list requirements.list +test: + csi -s test.scm + # Clean target clean: rm -rf build |
