aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorturret <turret@duck.com>2023-12-18 14:05:04 -0600
committerturret <turret@duck.com>2023-12-18 14:05:04 -0600
commitcea6abd8faa5570ab06d40eae08f8c3aa519671c (patch)
tree1cf0e26faeb2f73867868ca191ffa1926f9641be /Makefile
parent447b5176fada552f36f0030aeebc92a47fd60b23 (diff)
downloaddiscord-bot-skeleton-cea6abd8faa5570ab06d40eae08f8c3aa519671c.tar.gz
discord-bot-skeleton-cea6abd8faa5570ab06d40eae08f8c3aa519671c.tar.bz2
discord-bot-skeleton-cea6abd8faa5570ab06d40eae08f8c3aa519671c.zip
build: link against libcurl
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 8a8503e..d6f1d56 100644
--- a/Makefile
+++ b/Makefile
@@ -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)