diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2023-01-17 22:49:31 +0100 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2023-01-17 22:49:31 +0100 |
| commit | 1a66f5d069e4ccb600186918f716323aa7bae052 (patch) | |
| tree | 9010251014a766f29d1c2fb6c30c9abdb1766962 /core/Makefile | |
| parent | b2146cd4d6e6f5fda36d59c054e0634a2098a03c (diff) | |
add tctl and list
Diffstat (limited to 'core/Makefile')
| -rw-r--r-- | core/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Makefile b/core/Makefile index 0dc6d12..d8335b0 100644 --- a/core/Makefile +++ b/core/Makefile @@ -9,7 +9,7 @@ options: objects/%: %.c -mkdir -p $$(dirname $@) - gcc $< -o $@ ../lib/slib.a -static -nostdlib -fno-stack-protector -Wno-implicit-function-declaration -fno-builtin -g + gcc $< -o $@ ../lib/slib.a -static -nostdlib -fno-stack-protector -Wno-implicit-function-declaration -fno-builtin -Wno-int-conversion -g clean: rm ${OBJ} |