about summary refs log tree commit diff
path: root/Makefile
blob: d2ea3895930e1d14d7f9bcc087d6330718b3ebfc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
OBJS += cptc.o
OBJS += main.o
OBJS += requestHandler.o

CFLAGS += -std=c11
RM = rm -f

all: cptc

cptc: $(OBJS)

clean:
	$(RM) cptc *.o

cptc: $(OBJS)