PROGRAM = http-client

CC = gcc
CFLAGS = -g -Wall
OBJS = http-client.o

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

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