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-19 02:20:10 +02:00

15 lines
208 B
Makefile

OBJECTS=xerxes.cxx socket.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