1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-07-03 19:47:46 +02:00
toxic/cfg/checks/games.mk

6 lines
189 B
Makefile
Raw Normal View History

# Variables for game support
GAMES_CFLAGS = -DGAMES
2021-06-02 05:00:00 +02:00
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)