blob: 7ca6edb9e1b7de5e6b33cd34287dd779c5731e6d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
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
cptc: $(OBJS)
clean:
$(RM) cptc *.o
cptc: $(OBJS)
|