diff options
author | qorg11 <qorg@vxempire.xyz> | 2021-07-29 20:11:17 +0200 |
---|---|---|
committer | qorg11 <qorg@vxempire.xyz> | 2021-07-29 20:11:17 +0200 |
commit | ff72d207d08da1e79176a5c3ac5c18a079a1a4f2 (patch) | |
tree | 61f51c8b1ed0b3289beb5d16c1b89676a5268b62 | |
parent | 115414f878b3bf29ab734a656c02a5c7f95d516f (diff) | |
download | demiurge-ff72d207d08da1e79176a5c3ac5c18a079a1a4f2.tar.gz demiurge-ff72d207d08da1e79176a5c3ac5c18a079a1a4f2.zip |
Remove warnings cflags from makefile
-rw-r--r-- | src/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index 5d0646e..7a8cdf5 100644 --- a/src/Makefile +++ b/src/Makefile @@ -3,7 +3,7 @@ TARGET = demiurge OBJS = login.o util.o post.o main.o upload_file.o asprintf.o follow.o CC = cc -CFLAGS += -O2 -MD -std=c11 -Wall -Wextra -Werror -Wpedantic -lcurl -g -lreadline -ljson-c +CFLAGS += -O2 -MD -std=c11 -Wall -lcurl -g -lreadline -ljson-c $(TARGET): $(OBJS) |