From: Holger Schemel Date: Fri, 23 Feb 2024 17:03:18 +0000 (+0100) Subject: fixed wrong linking order of libraries in Makefile X-Git-Tag: 4.4.0.0-test-1~306 X-Git-Url: https://git.artsoft.org/?a=commitdiff_plain;h=918106ffb9ea0eb7a2dbac95e0590d35a6bfe9df;p=rocksndiamonds.git fixed wrong linking order of libraries in Makefile --- diff --git a/src/Makefile b/src/Makefile index 6f586e0f..6e74c8e1 100644 --- a/src/Makefile +++ b/src/Makefile @@ -255,7 +255,7 @@ GAME_SP = $(GAME_SP_DIR)/game_sp.a GAME_MM_DIR = game_mm GAME_MM = $(GAME_MM_DIR)/game_mm.a -RNDLIBS = $(LIBGAME) $(GAME_BD) $(GAME_EM) $(GAME_SP) $(GAME_MM) +RNDLIBS = $(GAME_BD) $(GAME_EM) $(GAME_SP) $(GAME_MM) $(LIBGAME) AUTOCONF = conf_gfx.h conf_snd.h conf_mus.h ICONBASE = windows_icon