From: Timo Korvola Date: Tue, 27 Mar 2018 20:05:34 +0000 (+0300) Subject: sfrotz requires -lm. X-Git-Url: https://scope-eye.net/git/?a=commitdiff_plain;h=932bb5b2eeb72356ab962dd6923cdc7ad7a9077d;p=liskon_frotz.git sfrotz requires -lm. --- diff --git a/Makefile b/Makefile index fa69d14..0c330d0 100644 --- a/Makefile +++ b/Makefile @@ -134,7 +134,7 @@ BLORB_LIB = $(BLORB_DIR)/blorblib.a SDL_DIR = $(SRCDIR)/sdl SDL_LIB = $(SDL_DIR)/frotz_sdl.a export SDL_PKGS = libpng libjpeg sdl SDL_mixer freetype2 zlib -SDL_LDFLAGS = `pkg-config $(SDL_PKGS) --libs` +SDL_LDFLAGS = `pkg-config $(SDL_PKGS) --libs` -lm SUBDIRS = $(COMMON_DIR) $(CURSES_DIR) $(SDL_DIR) $(DUMB_DIR) $(BLORB_DIR)