diff options
author | dec05eba <dec05eba@protonmail.com> | 2020-01-22 03:03:37 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2020-01-22 03:03:37 +0100 |
commit | a724ddbe1c8c53acd8b2836e437237cf17c57043 (patch) | |
tree | 212de4293dbb01400d0251f1478484e8eee60f70 /Makefile | |
parent | 88244bd3070399ba62d79bae6dfdf8b09ff8406d (diff) |
Use macro return_if_error instead of if-statement everywhere
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ -CFLAGS = -Wall -Wextra -g3 -ansi -pedantic -fPIE -LIBS = -Wl,-Bdynamic -lcurl +CFLAGS = -Wall -Wextra -Werror -g3 -std=c89 -pedantic -fPIE +LIBS = -lgc OBJ = build/main.o build/tokenizer.o build/parser.o build/bytecode.o build/buffer.o build/hash_map.o CC = cc |