forgot that...

This commit is contained in:
soeren 2010-01-15 14:45:12 +00:00
parent 49ab4eecc2
commit 7eae314f88
2 changed files with 6 additions and 1 deletions

View File

@ -5,6 +5,7 @@ dep_bool "tetris" GAME_TETRIS $JOYSTICK_SUPPORT $RANDOM_SUPPOR
dep_bool "bastet" GAME_BASTET $GAME_TETRIS
dep_bool "space invaders" GAME_SPACE_INVADERS $JOYSTICK_SUPPORT $RANDOM_SUPPORT
dep_bool "snake" GAME_SNAKE $JOYSTICK_SUPPORT $RANDOM_SUPPORT
dep_bool "breakout" GAME_BREAKOUT $JOYSTICK_SUPPORT $RANDOM_SUPPORT
endmenu
endmenu

View File

@ -10,3 +10,7 @@ endif
ifeq ($(GAME_SNAKE),y)
SUBDIRS += games/snake
endif
ifeq ($(GAME_BREAKOUT),y)
SUBDIRS += games/breakout
endif