1
0
mirror of https://github.com/Tha14/toxic.git synced 2025-12-06 21:56:34 +01:00

Add ability to compile without game support

This commit is contained in:
jfreegman
2021-01-18 22:37:14 -05:00
parent 787d081e74
commit 960ad7c4cb
19 changed files with 121 additions and 17 deletions

5
cfg/checks/games.mk Normal file
View File

@@ -0,0 +1,5 @@
# Variables for game support
GAMES_CFLAGS = -DGAMES
GAMES_OBJ = game_base.o game_centipede.o game_chess.o game_util.o game_snake.o
CFLAGS += $(GAMES_CFLAGS)
OBJ += $(GAMES_OBJ)