1
0
mirror of https://github.com/agdsn/xerxes.git synced 2026-06-19 21:58:01 +00:00

Schluss fuer heute.

This commit is contained in:
Maximilian Marx
2008-08-19 02:20:10 +02:00
parent 7b914f4d6f
commit 0bf9d52b74
4 changed files with 168 additions and 10 deletions
+12 -2
View File
@@ -1,5 +1,15 @@
OBJECTS=xerxes.cxx
OBJECTS=xerxes.cxx socket.cxx
BIN=xerxes
$(BIN): $(OBJECTS)
g++ -o $(BIN) $(OBJECTS) -Wall -pedantic -ggdb
g++ -o $(BIN) $(OBJECTS) -Wall -pedantic -ggdb
all: $(BIN)
test: $(BIN)
./$(BIN)
clean:
rm -f $(BIN) *.o *.cxx~ *.hxx~ Makefile~
.PHONY: all