aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorElias Fleckenstein <eliasfleckenstein@web.de>2021-12-19 17:40:00 +0100
committerElias Fleckenstein <eliasfleckenstein@web.de>2021-12-19 17:40:00 +0100
commit207ea9b245f8b0b31c4f3ca4936371fdb7d92334 (patch)
tree7fc7a4fac074fd10e3cfa1f4d9314a023df05f42 /Makefile
parent125e7eca1a13a4e1ea374e480038e565d74d684b (diff)
downloaddungeon_game-master.tar.xz
Replace dlmopen by dlopenHEADmaster
This makes builds without glibc (e.g. on Alpine linux) possible.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 01017e6..01265d2 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
all: dungeon plugins
dungeon: dungeon.c
- cc -g -o dungeon dungeon.c -ldl -D_GNU_SOURCE
+ cc -g -o dungeon dungeon.c -ldl
include plugins/*/Makefile