diff options
| author | Nakidai <nakidai@disroot.org> | 2024-09-26 00:14:12 +0300 |
|---|---|---|
| committer | Nakidai <nakidai@disroot.org> | 2024-09-26 00:14:59 +0300 |
| commit | b50e57cc138fd19ed19da665daba54890995dca3 (patch) | |
| tree | 2c9d65b823fd1133aef19879eba7dcfce8b75e31 /Makefile | |
| parent | 0caf047c3c1ecf34a47061951e838d05574dbd6c (diff) | |
| download | cptc-b50e57cc138fd19ed19da665daba54890995dca3.tar.gz cptc-b50e57cc138fd19ed19da665daba54890995dca3.zip | |
Now it will work
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile index d2ea389..7ca6edb 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,13 @@ OBJS += cptc.o OBJS += main.o OBJS += requestHandler.o +OBJS += downloadAvatar.o +CFLAGS += $(shell curl-config --cflags) CFLAGS += -std=c11 + +LDFLAGS += $(shell curl-config --libs) +LDFLAGS += -lcpetpet RM = rm -f all: cptc |