diff options
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 |