[gnome-games] gnobots2: Relayout into src data directories



commit 1607eaf49fdd4952880f4ef868cfa2d7f21a0098
Author: Robert Ancell <robert ancell canonical com>
Date:   Fri Dec 9 13:55:14 2011 +1100

    gnobots2: Relayout into src data directories

 gnobots2/AUTHORS                                  |    5 -
 gnobots2/ChangeLog.old                            |  873 ---------------------
 gnobots2/data/Makefile.am                         |  152 ++++
 gnobots2/{ => data}/aieee.png                     |  Bin 2384 -> 2384 bytes
 gnobots2/{ => data}/boo.svg                       |    0
 gnobots2/{ => data}/classic_robots.cfg            |    0
 gnobots2/{ => data}/cursor-down-left.png          |  Bin 212 -> 212 bytes
 gnobots2/{ => data}/cursor-down-right.png         |  Bin 217 -> 217 bytes
 gnobots2/{ => data}/cursor-down.png               |  Bin 220 -> 220 bytes
 gnobots2/{ => data}/cursor-hold.png               |  Bin 204 -> 204 bytes
 gnobots2/{ => data}/cursor-left.png               |  Bin 220 -> 220 bytes
 gnobots2/{ => data}/cursor-right.png              |  Bin 224 -> 224 bytes
 gnobots2/{ => data}/cursor-up-left.png            |  Bin 216 -> 216 bytes
 gnobots2/{ => data}/cursor-up-right.png           |  Bin 211 -> 211 bytes
 gnobots2/{ => data}/cursor-up.png                 |  Bin 208 -> 208 bytes
 gnobots2/{ => data}/gnobots2.6                    |    0
 gnobots2/{ => data}/gnobots2.desktop.in.in        |    0
 gnobots2/{ => data}/gnobots2.schemas.in           |    0
 gnobots2/{ => data}/gnomes.png                    |  Bin 1374 -> 1374 bytes
 gnobots2/{ => data}/nightmare.cfg                 |    0
 gnobots2/{ => data}/robots.svg                    |    0
 gnobots2/{ => data}/robots2.cfg                   |    0
 gnobots2/{ => data}/robots2_easy.cfg              |    0
 gnobots2/{ => data}/robots_with_safe_teleport.cfg |    0
 gnobots2/{ => data}/splat.png                     |  Bin 1616 -> 1616 bytes
 gnobots2/{ => data}/ufo.svg                       |    0
 gnobots2/{ => data}/yahoo.png                     |  Bin 2310 -> 2310 bytes
 gnobots2/src/Makefile.am                          |  152 ++++
 gnobots2/{ => src}/cursor-down-left.h             |    0
 gnobots2/{ => src}/cursor-down-right.h            |    0
 gnobots2/{ => src}/cursor-down.h                  |    0
 gnobots2/{ => src}/cursor-hold.h                  |    0
 gnobots2/{ => src}/cursor-left.h                  |    0
 gnobots2/{ => src}/cursor-right.h                 |    0
 gnobots2/{ => src}/cursor-up-left.h               |    0
 gnobots2/{ => src}/cursor-up-right.h              |    0
 gnobots2/{ => src}/cursor-up.h                    |    0
 gnobots2/{ => src}/cursors.c                      |    0
 gnobots2/{ => src}/cursors.h                      |    0
 gnobots2/{ => src}/find-file.c                    |    0
 gnobots2/{ => src}/find-file.h                    |    0
 gnobots2/{ => src}/game.c                         |    0
 gnobots2/{ => src}/game.h                         |    0
 gnobots2/{ => src}/gameconfig.c                   |    0
 gnobots2/{ => src}/gameconfig.h                   |    0
 gnobots2/{ => src}/gbdefs.h                       |    0
 gnobots2/{ => src}/gnobots.c                      |    0
 gnobots2/{ => src}/gnobots.h                      |    0
 gnobots2/{ => src}/graphics.c                     |    0
 gnobots2/{ => src}/graphics.h                     |    0
 gnobots2/{ => src}/keyboard.c                     |    0
 gnobots2/{ => src}/keyboard.h                     |    0
 gnobots2/{ => src}/menu.c                         |    0
 gnobots2/{ => src}/menu.h                         |    0
 gnobots2/{ => src}/properties.c                   |    0
 gnobots2/{ => src}/properties.h                   |    0
 gnobots2/{ => src}/sound.c                        |    0
 gnobots2/{ => src}/sound.h                        |    0
 gnobots2/{ => src}/statusbar.c                    |    0
 gnobots2/{ => src}/statusbar.h                    |    0
 60 files changed, 304 insertions(+), 878 deletions(-)
---
diff --git a/gnobots2/data/Makefile.am b/gnobots2/data/Makefile.am
new file mode 100644
index 0000000..2cb0545
--- /dev/null
+++ b/gnobots2/data/Makefile.am
@@ -0,0 +1,152 @@
+SUBDIRS =
+
+if BUILD_HELP
+SUBDIRS += help
+endif
+
+NULL =
+
+schema_in_files = gnobots2.schemas.in
+if HAVE_GNOME
+schemadir = $(GCONF_SCHEMA_FILE_DIR)
+schema_DATA = $(schema_in_files:.schemas.in=.schemas)
+endif
+
+ INTLTOOL_SCHEMAS_RULE@
+
+man_MANS = gnobots2.6
+
+bin_PROGRAMS = gnobots2
+
+gnobots2_SOURCES = \
+	gnobots.c \
+	gnobots.h \
+	statusbar.c \
+	statusbar.h \
+	gameconfig.c \
+	gameconfig.h \
+	menu.c \
+	menu.h \
+	properties.c \
+	properties.h \
+	graphics.c \
+	graphics.h \
+	keyboard.c \
+	keyboard.h \
+	game.c \
+	game.h \
+	sound.c \
+	sound.h \
+	cursors.c \
+	cursors.h \
+	gbdefs.h \
+	find-file.c \
+	find-file.h \
+	cursor-down.h \
+	cursor-down-left.h \
+	cursor-down-right.h \
+	cursor-hold.h \
+	cursor-left.h \
+	cursor-right.h \
+	cursor-up.h \
+	cursor-up-left.h \
+	cursor-up-right.h \
+	$(NULL)
+
+gnobots2_CPPFLAGS = \
+	-I$(top_srcdir) \
+	$(AM_CPPFLAGS)
+
+gnobots2_CFLAGS = \
+	$(GTK_CFLAGS) \
+	$(AM_CFLAGS)
+
+gnobots2_LDADD = \
+	$(top_builddir)/libgames-support/libgames-support.la \
+	$(GTK_LIBS) \
+	$(INTLLIBS) \
+	-lm \
+	$(NULL)
+
+if HAVE_GNOME
+gnobots2_CFLAGS += $(GNOME_CFLAGS)
+gnobots2_LDADD += $(GNOME_LIBS)
+endif
+
+if HAVE_RSVG
+gnobots2_CFLAGS += $(RSVG_CFLAGS)
+gnobots2_LDADD += $(RSVG_LIBS)
+endif
+
+if WITH_GTHREAD
+gnobots2_CFLAGS += $(GHTREAD_CFLAGS)
+gnobots2_LDADD += $(GTHREAD_LIBS)
+endif
+
+cursor_files = \
+	cursor-down-left.png	\
+	cursor-down.png		\
+	cursor-down-right.png	\
+	cursor-hold.png		\
+	cursor-left.png		\
+	cursor-right.png	\
+	cursor-up-left.png	\
+	cursor-up.png		\
+	cursor-up-right.png	\
+	$(NULL)
+
+pixmapdir = $(pkgdatadir)/gnobots2/pixmaps
+pixmap_DATA = yahoo.png \
+              aieee.png \
+              splat.png
+
+themedir = $(pkgdatadir)/gnobots2/themes
+theme_DATA = gnomes.png \
+             robots.svg \
+             boo.svg \
+             ufo.svg
+
+configdir = $(pkgdatadir)/gnobots2/games
+config_DATA = robots2.cfg \
+              robots2_easy.cfg \
+              classic_robots.cfg \
+              robots_with_safe_teleport.cfg \
+              nightmare.cfg
+
+Gamesdir = $(datadir)/applications
+Games_in_files = gnobots2.desktop.in.in
+Games_DATA = $(Games_in_files:.desktop.in.in=.desktop)
+ INTLTOOL_DESKTOP_RULE@
+
+EXTRA_DIST = AUTHORS \
+	     $(cursor_files) \
+             $(pixmap_DATA) \
+             $(theme_DATA) \
+             $(Games_DATA) \
+             $(config_DATA) \
+             $(schema_in_files) \
+             $(man_MANS)
+
+install-data-local:
+if GCONF_SCHEMAS_INSTALL
+	GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) --makefile-install-rule $(top_builddir)/gnobots2/$(schema_DATA)
+endif
+	-$(mkinstalldirs) $(DESTDIR)$(scoredir)
+	-for cfn in $(config_DATA); do \
+	    cfn2=`echo $$cfn | sed -e 's/\.cfg//'`; \
+            fname1=$(DESTDIR)$(scoredir)/gnobots2.$$cfn2.scores; \
+            fname2=$(DESTDIR)$(scoredir)/gnobots2.$$cfn2-safe.scores; \
+            fname3=$(DESTDIR)$(scoredir)/gnobots2.$$cfn2-super-safe.scores; \
+	    touch $$fname1; chmod 664 $$fname1; chown $(scores_user):$(scores_group) $$fname1; \
+	    touch $$fname2; chmod 664 $$fname2; chown $(scores_user):$(scores_group) $$fname2; \
+	    touch $$fname3; chmod 664 $$fname3; chown $(scores_user):$(scores_group) $$fname3; \
+	    done
+
+install-exec-hook:
+	-if test "$(setgid)" = "true"; then \
+	  chgrp $(scores_group) $(DESTDIR)$(bindir)/gnobots2 && chmod 2555 $(DESTDIR)$(bindir)/gnobots2 ;\
+	fi
+
+DISTCLEANFILES = $(Games_DATA) $(schema_DATA)
+
+-include $(top_srcdir)/git.mk
diff --git a/gnobots2/aieee.png b/gnobots2/data/aieee.png
similarity index 100%
rename from gnobots2/aieee.png
rename to gnobots2/data/aieee.png
diff --git a/gnobots2/boo.svg b/gnobots2/data/boo.svg
similarity index 100%
rename from gnobots2/boo.svg
rename to gnobots2/data/boo.svg
diff --git a/gnobots2/classic_robots.cfg b/gnobots2/data/classic_robots.cfg
similarity index 100%
rename from gnobots2/classic_robots.cfg
rename to gnobots2/data/classic_robots.cfg
diff --git a/gnobots2/cursor-down-left.png b/gnobots2/data/cursor-down-left.png
similarity index 100%
rename from gnobots2/cursor-down-left.png
rename to gnobots2/data/cursor-down-left.png
diff --git a/gnobots2/cursor-down-right.png b/gnobots2/data/cursor-down-right.png
similarity index 100%
rename from gnobots2/cursor-down-right.png
rename to gnobots2/data/cursor-down-right.png
diff --git a/gnobots2/cursor-down.png b/gnobots2/data/cursor-down.png
similarity index 100%
rename from gnobots2/cursor-down.png
rename to gnobots2/data/cursor-down.png
diff --git a/gnobots2/cursor-hold.png b/gnobots2/data/cursor-hold.png
similarity index 100%
rename from gnobots2/cursor-hold.png
rename to gnobots2/data/cursor-hold.png
diff --git a/gnobots2/cursor-left.png b/gnobots2/data/cursor-left.png
similarity index 100%
rename from gnobots2/cursor-left.png
rename to gnobots2/data/cursor-left.png
diff --git a/gnobots2/cursor-right.png b/gnobots2/data/cursor-right.png
similarity index 100%
rename from gnobots2/cursor-right.png
rename to gnobots2/data/cursor-right.png
diff --git a/gnobots2/cursor-up-left.png b/gnobots2/data/cursor-up-left.png
similarity index 100%
rename from gnobots2/cursor-up-left.png
rename to gnobots2/data/cursor-up-left.png
diff --git a/gnobots2/cursor-up-right.png b/gnobots2/data/cursor-up-right.png
similarity index 100%
rename from gnobots2/cursor-up-right.png
rename to gnobots2/data/cursor-up-right.png
diff --git a/gnobots2/cursor-up.png b/gnobots2/data/cursor-up.png
similarity index 100%
rename from gnobots2/cursor-up.png
rename to gnobots2/data/cursor-up.png
diff --git a/gnobots2/gnobots2.6 b/gnobots2/data/gnobots2.6
similarity index 100%
rename from gnobots2/gnobots2.6
rename to gnobots2/data/gnobots2.6
diff --git a/gnobots2/gnobots2.desktop.in.in b/gnobots2/data/gnobots2.desktop.in.in
similarity index 100%
rename from gnobots2/gnobots2.desktop.in.in
rename to gnobots2/data/gnobots2.desktop.in.in
diff --git a/gnobots2/gnobots2.schemas.in b/gnobots2/data/gnobots2.schemas.in
similarity index 100%
rename from gnobots2/gnobots2.schemas.in
rename to gnobots2/data/gnobots2.schemas.in
diff --git a/gnobots2/gnomes.png b/gnobots2/data/gnomes.png
similarity index 100%
rename from gnobots2/gnomes.png
rename to gnobots2/data/gnomes.png
diff --git a/gnobots2/nightmare.cfg b/gnobots2/data/nightmare.cfg
similarity index 100%
rename from gnobots2/nightmare.cfg
rename to gnobots2/data/nightmare.cfg
diff --git a/gnobots2/robots.svg b/gnobots2/data/robots.svg
similarity index 100%
rename from gnobots2/robots.svg
rename to gnobots2/data/robots.svg
diff --git a/gnobots2/robots2.cfg b/gnobots2/data/robots2.cfg
similarity index 100%
rename from gnobots2/robots2.cfg
rename to gnobots2/data/robots2.cfg
diff --git a/gnobots2/robots2_easy.cfg b/gnobots2/data/robots2_easy.cfg
similarity index 100%
rename from gnobots2/robots2_easy.cfg
rename to gnobots2/data/robots2_easy.cfg
diff --git a/gnobots2/robots_with_safe_teleport.cfg b/gnobots2/data/robots_with_safe_teleport.cfg
similarity index 100%
rename from gnobots2/robots_with_safe_teleport.cfg
rename to gnobots2/data/robots_with_safe_teleport.cfg
diff --git a/gnobots2/splat.png b/gnobots2/data/splat.png
similarity index 100%
rename from gnobots2/splat.png
rename to gnobots2/data/splat.png
diff --git a/gnobots2/ufo.svg b/gnobots2/data/ufo.svg
similarity index 100%
rename from gnobots2/ufo.svg
rename to gnobots2/data/ufo.svg
diff --git a/gnobots2/yahoo.png b/gnobots2/data/yahoo.png
similarity index 100%
rename from gnobots2/yahoo.png
rename to gnobots2/data/yahoo.png
diff --git a/gnobots2/src/Makefile.am b/gnobots2/src/Makefile.am
new file mode 100644
index 0000000..2cb0545
--- /dev/null
+++ b/gnobots2/src/Makefile.am
@@ -0,0 +1,152 @@
+SUBDIRS =
+
+if BUILD_HELP
+SUBDIRS += help
+endif
+
+NULL =
+
+schema_in_files = gnobots2.schemas.in
+if HAVE_GNOME
+schemadir = $(GCONF_SCHEMA_FILE_DIR)
+schema_DATA = $(schema_in_files:.schemas.in=.schemas)
+endif
+
+ INTLTOOL_SCHEMAS_RULE@
+
+man_MANS = gnobots2.6
+
+bin_PROGRAMS = gnobots2
+
+gnobots2_SOURCES = \
+	gnobots.c \
+	gnobots.h \
+	statusbar.c \
+	statusbar.h \
+	gameconfig.c \
+	gameconfig.h \
+	menu.c \
+	menu.h \
+	properties.c \
+	properties.h \
+	graphics.c \
+	graphics.h \
+	keyboard.c \
+	keyboard.h \
+	game.c \
+	game.h \
+	sound.c \
+	sound.h \
+	cursors.c \
+	cursors.h \
+	gbdefs.h \
+	find-file.c \
+	find-file.h \
+	cursor-down.h \
+	cursor-down-left.h \
+	cursor-down-right.h \
+	cursor-hold.h \
+	cursor-left.h \
+	cursor-right.h \
+	cursor-up.h \
+	cursor-up-left.h \
+	cursor-up-right.h \
+	$(NULL)
+
+gnobots2_CPPFLAGS = \
+	-I$(top_srcdir) \
+	$(AM_CPPFLAGS)
+
+gnobots2_CFLAGS = \
+	$(GTK_CFLAGS) \
+	$(AM_CFLAGS)
+
+gnobots2_LDADD = \
+	$(top_builddir)/libgames-support/libgames-support.la \
+	$(GTK_LIBS) \
+	$(INTLLIBS) \
+	-lm \
+	$(NULL)
+
+if HAVE_GNOME
+gnobots2_CFLAGS += $(GNOME_CFLAGS)
+gnobots2_LDADD += $(GNOME_LIBS)
+endif
+
+if HAVE_RSVG
+gnobots2_CFLAGS += $(RSVG_CFLAGS)
+gnobots2_LDADD += $(RSVG_LIBS)
+endif
+
+if WITH_GTHREAD
+gnobots2_CFLAGS += $(GHTREAD_CFLAGS)
+gnobots2_LDADD += $(GTHREAD_LIBS)
+endif
+
+cursor_files = \
+	cursor-down-left.png	\
+	cursor-down.png		\
+	cursor-down-right.png	\
+	cursor-hold.png		\
+	cursor-left.png		\
+	cursor-right.png	\
+	cursor-up-left.png	\
+	cursor-up.png		\
+	cursor-up-right.png	\
+	$(NULL)
+
+pixmapdir = $(pkgdatadir)/gnobots2/pixmaps
+pixmap_DATA = yahoo.png \
+              aieee.png \
+              splat.png
+
+themedir = $(pkgdatadir)/gnobots2/themes
+theme_DATA = gnomes.png \
+             robots.svg \
+             boo.svg \
+             ufo.svg
+
+configdir = $(pkgdatadir)/gnobots2/games
+config_DATA = robots2.cfg \
+              robots2_easy.cfg \
+              classic_robots.cfg \
+              robots_with_safe_teleport.cfg \
+              nightmare.cfg
+
+Gamesdir = $(datadir)/applications
+Games_in_files = gnobots2.desktop.in.in
+Games_DATA = $(Games_in_files:.desktop.in.in=.desktop)
+ INTLTOOL_DESKTOP_RULE@
+
+EXTRA_DIST = AUTHORS \
+	     $(cursor_files) \
+             $(pixmap_DATA) \
+             $(theme_DATA) \
+             $(Games_DATA) \
+             $(config_DATA) \
+             $(schema_in_files) \
+             $(man_MANS)
+
+install-data-local:
+if GCONF_SCHEMAS_INSTALL
+	GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) --makefile-install-rule $(top_builddir)/gnobots2/$(schema_DATA)
+endif
+	-$(mkinstalldirs) $(DESTDIR)$(scoredir)
+	-for cfn in $(config_DATA); do \
+	    cfn2=`echo $$cfn | sed -e 's/\.cfg//'`; \
+            fname1=$(DESTDIR)$(scoredir)/gnobots2.$$cfn2.scores; \
+            fname2=$(DESTDIR)$(scoredir)/gnobots2.$$cfn2-safe.scores; \
+            fname3=$(DESTDIR)$(scoredir)/gnobots2.$$cfn2-super-safe.scores; \
+	    touch $$fname1; chmod 664 $$fname1; chown $(scores_user):$(scores_group) $$fname1; \
+	    touch $$fname2; chmod 664 $$fname2; chown $(scores_user):$(scores_group) $$fname2; \
+	    touch $$fname3; chmod 664 $$fname3; chown $(scores_user):$(scores_group) $$fname3; \
+	    done
+
+install-exec-hook:
+	-if test "$(setgid)" = "true"; then \
+	  chgrp $(scores_group) $(DESTDIR)$(bindir)/gnobots2 && chmod 2555 $(DESTDIR)$(bindir)/gnobots2 ;\
+	fi
+
+DISTCLEANFILES = $(Games_DATA) $(schema_DATA)
+
+-include $(top_srcdir)/git.mk
diff --git a/gnobots2/cursor-down-left.h b/gnobots2/src/cursor-down-left.h
similarity index 100%
rename from gnobots2/cursor-down-left.h
rename to gnobots2/src/cursor-down-left.h
diff --git a/gnobots2/cursor-down-right.h b/gnobots2/src/cursor-down-right.h
similarity index 100%
rename from gnobots2/cursor-down-right.h
rename to gnobots2/src/cursor-down-right.h
diff --git a/gnobots2/cursor-down.h b/gnobots2/src/cursor-down.h
similarity index 100%
rename from gnobots2/cursor-down.h
rename to gnobots2/src/cursor-down.h
diff --git a/gnobots2/cursor-hold.h b/gnobots2/src/cursor-hold.h
similarity index 100%
rename from gnobots2/cursor-hold.h
rename to gnobots2/src/cursor-hold.h
diff --git a/gnobots2/cursor-left.h b/gnobots2/src/cursor-left.h
similarity index 100%
rename from gnobots2/cursor-left.h
rename to gnobots2/src/cursor-left.h
diff --git a/gnobots2/cursor-right.h b/gnobots2/src/cursor-right.h
similarity index 100%
rename from gnobots2/cursor-right.h
rename to gnobots2/src/cursor-right.h
diff --git a/gnobots2/cursor-up-left.h b/gnobots2/src/cursor-up-left.h
similarity index 100%
rename from gnobots2/cursor-up-left.h
rename to gnobots2/src/cursor-up-left.h
diff --git a/gnobots2/cursor-up-right.h b/gnobots2/src/cursor-up-right.h
similarity index 100%
rename from gnobots2/cursor-up-right.h
rename to gnobots2/src/cursor-up-right.h
diff --git a/gnobots2/cursor-up.h b/gnobots2/src/cursor-up.h
similarity index 100%
rename from gnobots2/cursor-up.h
rename to gnobots2/src/cursor-up.h
diff --git a/gnobots2/cursors.c b/gnobots2/src/cursors.c
similarity index 100%
rename from gnobots2/cursors.c
rename to gnobots2/src/cursors.c
diff --git a/gnobots2/cursors.h b/gnobots2/src/cursors.h
similarity index 100%
rename from gnobots2/cursors.h
rename to gnobots2/src/cursors.h
diff --git a/gnobots2/find-file.c b/gnobots2/src/find-file.c
similarity index 100%
rename from gnobots2/find-file.c
rename to gnobots2/src/find-file.c
diff --git a/gnobots2/find-file.h b/gnobots2/src/find-file.h
similarity index 100%
rename from gnobots2/find-file.h
rename to gnobots2/src/find-file.h
diff --git a/gnobots2/game.c b/gnobots2/src/game.c
similarity index 100%
rename from gnobots2/game.c
rename to gnobots2/src/game.c
diff --git a/gnobots2/game.h b/gnobots2/src/game.h
similarity index 100%
rename from gnobots2/game.h
rename to gnobots2/src/game.h
diff --git a/gnobots2/gameconfig.c b/gnobots2/src/gameconfig.c
similarity index 100%
rename from gnobots2/gameconfig.c
rename to gnobots2/src/gameconfig.c
diff --git a/gnobots2/gameconfig.h b/gnobots2/src/gameconfig.h
similarity index 100%
rename from gnobots2/gameconfig.h
rename to gnobots2/src/gameconfig.h
diff --git a/gnobots2/gbdefs.h b/gnobots2/src/gbdefs.h
similarity index 100%
rename from gnobots2/gbdefs.h
rename to gnobots2/src/gbdefs.h
diff --git a/gnobots2/gnobots.c b/gnobots2/src/gnobots.c
similarity index 100%
rename from gnobots2/gnobots.c
rename to gnobots2/src/gnobots.c
diff --git a/gnobots2/gnobots.h b/gnobots2/src/gnobots.h
similarity index 100%
rename from gnobots2/gnobots.h
rename to gnobots2/src/gnobots.h
diff --git a/gnobots2/graphics.c b/gnobots2/src/graphics.c
similarity index 100%
rename from gnobots2/graphics.c
rename to gnobots2/src/graphics.c
diff --git a/gnobots2/graphics.h b/gnobots2/src/graphics.h
similarity index 100%
rename from gnobots2/graphics.h
rename to gnobots2/src/graphics.h
diff --git a/gnobots2/keyboard.c b/gnobots2/src/keyboard.c
similarity index 100%
rename from gnobots2/keyboard.c
rename to gnobots2/src/keyboard.c
diff --git a/gnobots2/keyboard.h b/gnobots2/src/keyboard.h
similarity index 100%
rename from gnobots2/keyboard.h
rename to gnobots2/src/keyboard.h
diff --git a/gnobots2/menu.c b/gnobots2/src/menu.c
similarity index 100%
rename from gnobots2/menu.c
rename to gnobots2/src/menu.c
diff --git a/gnobots2/menu.h b/gnobots2/src/menu.h
similarity index 100%
rename from gnobots2/menu.h
rename to gnobots2/src/menu.h
diff --git a/gnobots2/properties.c b/gnobots2/src/properties.c
similarity index 100%
rename from gnobots2/properties.c
rename to gnobots2/src/properties.c
diff --git a/gnobots2/properties.h b/gnobots2/src/properties.h
similarity index 100%
rename from gnobots2/properties.h
rename to gnobots2/src/properties.h
diff --git a/gnobots2/sound.c b/gnobots2/src/sound.c
similarity index 100%
rename from gnobots2/sound.c
rename to gnobots2/src/sound.c
diff --git a/gnobots2/sound.h b/gnobots2/src/sound.h
similarity index 100%
rename from gnobots2/sound.h
rename to gnobots2/src/sound.h
diff --git a/gnobots2/statusbar.c b/gnobots2/src/statusbar.c
similarity index 100%
rename from gnobots2/statusbar.c
rename to gnobots2/src/statusbar.c
diff --git a/gnobots2/statusbar.h b/gnobots2/src/statusbar.h
similarity index 100%
rename from gnobots2/statusbar.h
rename to gnobots2/src/statusbar.h



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]