PROGRAM = http_server

CC = gcc
CFLAGS = -g -Wall
OBJS = main.o server.o recv_request.o\
	get_method.o \
	send_header.o send_content.o

$(PROGRAM): $(OBJS)
	$(CC) -o $@ $(OBJS)

$(OBJS): http_server.h

clean:
	rm -f $(PROGRAM) *.o *~