
all: app
clean:
	rm -rf *.o
	rm -f app
	
server.o: server.c server.h
app.o: app.c server.h
app: app.o server.o
