dungeon_game/Makefile

9 lines
123 B
Makefile
Raw Normal View History

2021-06-09 07:58:26 -07:00
all: dungeon plugins
dungeon: dungeon.c
cc -g -o dungeon dungeon.c -ldl
2021-06-09 07:58:26 -07:00
2021-06-09 08:31:27 -07:00
include plugins/*/Makefile
plugins: ${PLUGINS}