1
0
mirror of https://github.com/agdsn/xerxes.git synced 2026-06-19 21:58:01 +00:00
Files
xerxes/Makefile
T
2008-08-22 00:19:54 +02:00

16 lines
219 B
Makefile

OBJECTS=xerxes.cxx socket.cxx epoll.cxx
BIN=xerxes
$(BIN): $(OBJECTS)
g++ -o $(BIN) $(OBJECTS) -Wall -pedantic -ggdb
all: $(BIN)
test: $(BIN)
./$(BIN)
clean:
rm -f $(BIN) *.o *.cxx~ *.hxx~ Makefile~
.PHONY: all