CFLAGS = -g -Wall LIBS = -lpthread all: server clean: @rm server.o server server: server.o llist.o $(LIBS) server.o: server.c llist.o: llist.c