mirror of
https://github.com/Tha14/toxic.git
synced 2024-11-14 19:13:02 +01:00
6 lines
189 B
Makefile
6 lines
189 B
Makefile
# Variables for game support
|
|
GAMES_CFLAGS = -DGAMES
|
|
GAMES_OBJ = game_base.o game_centipede.o game_chess.o game_life.o game_util.o game_snake.o
|
|
CFLAGS += $(GAMES_CFLAGS)
|
|
OBJ += $(GAMES_OBJ)
|