borgware-2d/games/tetris/Makefile

24 lines
378 B
Makefile
Raw Normal View History

TARGET =
TOPDIR = ../..
include $(TOPDIR)/defaults.mk
SRC = tetris_main.c piece.c playfield.c view.c input.c highscore.c
ifeq ($(GAME_TETRIS),y)
SRC += variant_std.c
endif
2009-12-27 02:11:58 +00:00
ifeq ($(GAME_BASTET),y)
SRC += variant_bastet.c
endif
ifeq ($(GAME_TETRIS_FP),y)
ifneq ($(GAME_TETRIS),y)
SRC += variant_std.c
endif
SRC += variant_fp.c
2009-12-27 02:11:58 +00:00
endif
include $(TOPDIR)/rules.mk