From c7883691df583ff512cd0e6da10f6f58193c6cb2 Mon Sep 17 00:00:00 2001 From: Alexander Chermenin Date: Mon, 7 Dec 2020 13:11:25 +0500 Subject: [PATCH] Little changes --- .gitignore | 2 +- Makefile | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 2266295..9f4362c 100644 --- a/.gitignore +++ b/.gitignore @@ -10,7 +10,7 @@ DATA/ SAVE/ ORIG/ TUNES/ -tremor/ +deps/ # Prerequisites *.d diff --git a/Makefile b/Makefile index c30d9a7..3da973a 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,8 @@ SRCS = collision.cpp cpc_player.cpp cutscene.cpp decode_mac.cpp file.cpp fs.cpp OBJS = $(SRCS:.cpp=.o) $(SCALERS:.cpp=.o) DEPS = $(SRCS:.cpp=.d) $(SCALERS:.cpp=.d) -LIBS = $(SDL_LIBS) -Wl,-Bstatic $(MODPLUG_LIBS) $(TREMOR_LIBS) $(ZLIB_LIBS) -Wl,-Bdynamic +# LIBS = $(SDL_LIBS) -Wl,-Bstatic $(MODPLUG_LIBS) $(TREMOR_LIBS) $(ZLIB_LIBS) -Wl,-Bdynamic +LIBS = $(SDL_LIBS) $(MODPLUG_LIBS) $(TREMOR_LIBS) $(ZLIB_LIBS) fb: $(OBJS) $(CXX) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)