borgware-2d/games/tetris/Makefile

24 lines
375 B
Makefile
Raw Normal View History

TARGET =
TOPDIR = ../..
include $(TOPDIR)/defaults.mk
2010-08-22 03:07:46 +00:00
SRC = tetris_main.c piece.c bucket.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