LogServer.o: LogServer.hpp LogServer.cpp
	gcc -Wall -c -g -I. -o LogServer.o LogServer.cpp

test: test.cpp LogServer.o
	gcc -Wall -g -I. -L. -o test LogServer.o test.cpp -lstdc++

.PHONY: clean

clean:
	rm -f *.o
