diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-06-24 14:58:34 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-06-24 14:58:34 +0200 |
commit | cc80f10e05d4d1cec672cfa6a1ec985c5bc4bd44 (patch) | |
tree | bfd770782865ac654a80cf5c4db902a04a2db91d /c/simd-comment-skipping/Makefile | |
parent | bc7569b187e9a9ae5b651b747c7ece8044adf7d3 (diff) |
Add SIMD comment skipping
Diffstat (limited to 'c/simd-comment-skipping/Makefile')
-rw-r--r-- | c/simd-comment-skipping/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/c/simd-comment-skipping/Makefile b/c/simd-comment-skipping/Makefile new file mode 100644 index 0000000..2ae896b --- /dev/null +++ b/c/simd-comment-skipping/Makefile @@ -0,0 +1,8 @@ +include ../base.mk + +all: skpcmnt +skpcmnt: skpcmnt.c + $(CC) $(CFLAGS) -lbsd -o $@ $< + +clean: + rm -f skpcmnt |