borgware-2d/games/games.mk

23 lines
369 B
Makefile
Raw Normal View History

ifeq ($(GAME_TETRIS_CORE),y)
SUBDIRS += games/tetris
endif
ifeq ($(GAME_SPACE_INVADERS),y)
SUBDIRS += games/space_invaders
endif
ifeq ($(GAME_SNAKE),y)
SUBDIRS += games/snake
endif
2010-01-15 14:45:12 +00:00
ifeq ($(ANIMATION_SNAKE),y)
ifneq ($(GAME_SNAKE),y)
SUBDIRS += games/snake
endif
endif
2010-01-15 14:45:12 +00:00
ifeq ($(GAME_BREAKOUT),y)
SUBDIRS += games/breakout
endif