Commit 1b5c1e7b authored by Daniel Laird's avatar Daniel Laird
Browse files

games: Move all games into games subdir

Moved all games into a subdir called games and
then updated makefiles as necessary.

If not one objects to this one then I will
probably do the same for audio next.

Daniel Laird
parent 022b95d6
Loading
Loading
Loading
Loading
+2 −15
Original line number Diff line number Diff line
@@ -485,20 +485,7 @@ endif
# java support
source "package/java/Config.in"

menuconfig BR2_GAMES
	bool "Games"
	default y
	help
	  Support for games

if BR2_GAMES
source "package/lxdoom/Config.in"
source "package/ace_of_penguins/Config.in"
source "package/gnuchess/Config.in"
source "package/xboard/Config.in"
source "package/rubix/Config.in"
source "package/magiccube4d/Config.in"
source "package/vice/Config.in"
endif
# various games packages
source "package/games/Config.in"

endmenu
+15 −0
Original line number Diff line number Diff line
menuconfig BR2_GAMES
	bool "Games"
	default y
	help
	  Support for games

if BR2_GAMES
source "package/games/ace_of_penguins/Config.in"
source "package/games/gnuchess/Config.in"
source "package/games/lxdoom/Config.in"
source "package/games/magiccube4d/Config.in"
source "package/games/rubix/Config.in"
source "package/games/vice/Config.in"
source "package/games/xboard/Config.in"
endif
+1 −2
Original line number Diff line number Diff line
@@ -3,7 +3,6 @@
# ace_of_penguins
#
#############################################################

ACE_OF_PENGUINS_VERSION = 1.2
ACE_OF_PENGUINS_SOURCE = ace-$(ACE_OF_PENGUINS_VERSION).tar.gz
ACE_OF_PENGUINS_SITE = http://www.delorie.com/store/ace/
@@ -13,4 +12,4 @@ ACE_OF_PENGUINS_TARGET = YES

ACE_OF_PENGUINS_DEPENDENCIES = uclibc libpng $(XSERVER)

$(eval $(call AUTOTARGETS,package,ace_of_penguins))
 No newline at end of file
$(eval $(call AUTOTARGETS,package/games,ace_of_penguins))
Loading