pcb and initial code from https://github.com/das-labor/borgware-2d.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
375 B
23 lines
375 B
TARGET =
|
|
TOPDIR = ../..
|
|
|
|
include $(TOPDIR)/defaults.mk
|
|
|
|
SRC = tetris_main.c piece.c bucket.c view.c input.c highscore.c
|
|
|
|
ifeq ($(GAME_TETRIS),y)
|
|
SRC += variant_std.c
|
|
endif
|
|
|
|
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
|
|
endif
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|