diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-03-03 16:08:38 -0500 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-03-03 16:08:38 -0500 |
| commit | 32f27b6206c542d53383654fffff27a3fcdbc168 (patch) | |
| tree | 93e11bf6e594fccfcb8b013f59f00105d1604373 /Makefile | |
| parent | 5486cdcedb592818f17195d6225ad9711aa21724 (diff) | |
Fix table literals
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,6 +1,6 @@ PREFIX=/usr/local VERSION=0.12.1 -CCONFIG=-std=c11 -Werror -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -fPIC \ +CCONFIG=-std=c11 -Werror -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -fPIC -I. \ -fsanitize=signed-integer-overflow -fno-sanitize-recover -fvisibility=hidden -fdollars-in-identifiers LTO=-flto=auto -fno-fat-lto-objects -Wl,-flto LDFLAGS=-Wl,-rpath '-Wl,$$ORIGIN' @@ -41,7 +41,7 @@ tags: ctags *.[ch] **/*.[ch] test: tomo - for f in test/*; do echo -e "\x1b[1;4m$$f\x1b[m"; VERBOSE=0 CC=tcc ./tomo "$$f" || break; done + for f in test/*.tm; do echo -e "\x1b[1;4m$$f\x1b[m"; VERBOSE=0 CC=tcc ./tomo "$$f" || break; done clean: rm -f tomo *.o SipHash/halfsiphash.o builtins/*.o libtomo.so |
