diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2,7 +2,7 @@ CC = gcc CFLAGS = -std=c99 -O3 -g -Wall -Wextra -Wpedantic -masm=intel CFLAGS += -Iinclude -D_GNU_SOURCE -D_POSIX_C_SOURCE=200809L CFLAGS += -Wno-unused-result -LDFLAGS = -Tlinker.ld -no-pie +LDFLAGS = -Tlinker.ld -no-pie -g -lcurl SRC = $(wildcard *.c **/*.c) OBJ = $(SRC:.c=.o) |