diff --git a/Makefile.am b/Makefile.am index 3477bd2..7a99525 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,2 +1,2 @@ -SUBDIRS = src docs/reference/wmud +SUBDIRS = wmud docs/reference/wmud DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc diff --git a/docs/reference/wmud/Makefile.am b/docs/reference/wmud/Makefile.am index d9105e3..5cca7e4 100644 --- a/docs/reference/wmud/Makefile.am +++ b/docs/reference/wmud/Makefile.am @@ -22,7 +22,7 @@ DOC_MAIN_SGML_FILE=$(DOC_MODULE)-docs.sgml # gtk-doc will search all .c and .h files beneath these paths # for inline comments documenting functions and macros. # e.g. DOC_SOURCE_DIR=$(top_srcdir)/gtk $(top_srcdir)/gdk -DOC_SOURCE_DIR=$(top_srcdir)/src +DOC_SOURCE_DIR=$(top_srcdir)/wmud # Extra options to pass to gtkdoc-scangobj. Not normally needed. SCANGOBJ_OPTIONS= diff --git a/src/.gitignore b/wmud/.gitignore similarity index 100% rename from src/.gitignore rename to wmud/.gitignore diff --git a/src/Makefile.am b/wmud/Makefile.am similarity index 100% rename from src/Makefile.am rename to wmud/Makefile.am diff --git a/src/configuration.c b/wmud/configuration.c similarity index 100% rename from src/configuration.c rename to wmud/configuration.c diff --git a/src/configuration.h b/wmud/configuration.h similarity index 100% rename from src/configuration.h rename to wmud/configuration.h diff --git a/src/db.c b/wmud/db.c similarity index 100% rename from src/db.c rename to wmud/db.c diff --git a/src/db.h b/wmud/db.h similarity index 100% rename from src/db.h rename to wmud/db.h diff --git a/src/game-networking.c b/wmud/game-networking.c similarity index 100% rename from src/game-networking.c rename to wmud/game-networking.c diff --git a/src/game-networking.h b/wmud/game-networking.h similarity index 100% rename from src/game-networking.h rename to wmud/game-networking.h diff --git a/src/game.c b/wmud/game.c similarity index 100% rename from src/game.c rename to wmud/game.c diff --git a/src/game.h b/wmud/game.h similarity index 100% rename from src/game.h rename to wmud/game.h diff --git a/src/interpreter.c b/wmud/interpreter.c similarity index 100% rename from src/interpreter.c rename to wmud/interpreter.c diff --git a/src/interpreter.h b/wmud/interpreter.h similarity index 100% rename from src/interpreter.h rename to wmud/interpreter.h diff --git a/src/main.c b/wmud/main.c similarity index 100% rename from src/main.c rename to wmud/main.c diff --git a/src/main.h b/wmud/main.h similarity index 100% rename from src/main.h rename to wmud/main.h diff --git a/src/maintenance.c b/wmud/maintenance.c similarity index 100% rename from src/maintenance.c rename to wmud/maintenance.c diff --git a/src/maintenance.h b/wmud/maintenance.h similarity index 100% rename from src/maintenance.h rename to wmud/maintenance.h diff --git a/src/players.c b/wmud/players.c similarity index 100% rename from src/players.c rename to wmud/players.c diff --git a/src/players.h b/wmud/players.h similarity index 100% rename from src/players.h rename to wmud/players.h diff --git a/src/wmud-types.h b/wmud/wmud-types.h similarity index 100% rename from src/wmud-types.h rename to wmud/wmud-types.h diff --git a/src/world.c b/wmud/world.c similarity index 100% rename from src/world.c rename to wmud/world.c diff --git a/src/world.h b/wmud/world.h similarity index 100% rename from src/world.h rename to wmud/world.h