From b69f7f9072242cba8e65e19211003b9e892ff751 Mon Sep 17 00:00:00 2001 From: tschmidty69 Date: Sat, 17 Feb 2018 10:05:43 -0500 Subject: [PATCH] Moved ldflags to end of cc line --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4e0980b..230bd02 100644 --- a/Makefile +++ b/Makefile @@ -156,7 +156,7 @@ frotz: $(SRCDIR)/frotz_common.a $(SRCDIR)/frotz_curses.a $(SRCDIR)/blorblib.a $(CC) $(CFLAGS) $^ -o $@$(EXTENSION) $(CURSES) $(LDFLAGS) dfrotz: $(SRCDIR)/frotz_common.a $(SRCDIR)/frotz_dumb.a $(SRCDIR)/blorblib.a - $(CC) $(CFLAGS) $^ -o $@$(EXTENSION) $(LDFLAGS) + $(CC) $(CFLAGS) $^ -o $@$(EXTENSION) $(LDFLAGS) all: frotz dfrotz -- 2.34.1