commit 3250434bb747424164f9ed05edbc277696e5b02f Author: Maximilian Marx Date: Mon Aug 18 15:41:35 2008 +0200 initial import. diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..30126f2 --- /dev/null +++ b/Makefile @@ -0,0 +1,5 @@ +OBJECTS=xerxes.cxx +BIN=xerxes + +$(BIN): $(OBJECTS) + g++ -o $(BIN) $(OBJECTS) -Wall -pedantic -ggdb \ No newline at end of file diff --git a/xerxes.cxx b/xerxes.cxx new file mode 100644 index 0000000..572b3bf --- /dev/null +++ b/xerxes.cxx @@ -0,0 +1,17 @@ +/** + * xerxes - mysql proxying + * ``Why do you persist in your loneliness?'' --Xerxes + * (c) 2008 + * Jan Losinski + * Maximilian Marx + */ + +#include + +int +main(int argc, char* argv[]) +{ + std::cout << "Hello, World!"; + + return 0; +}