borgware-2d/games/tetris/Makefile
kju 187765a1ef Tetris: Add separate highscore counters for standard and bastet. Add input
and display of three character nick name for highscore achiever.
2010-01-11 21:47:56 +00:00

12 lines
252 B
Makefile

TARGET =
TOPDIR = ../..
include $(TOPDIR)/defaults.mk
ifeq ($(GAME_BASTET),y)
SRC = piece.c playfield.c view.c logic.c input.c highscore.c bast.c
else
SRC = piece.c playfield.c view.c logic.c input.c highscore.c
endif
include $(TOPDIR)/rules.mk