From 051882415db985213646215bd7acb9768bb64afe Mon Sep 17 00:00:00 2001 From: Sean Fitzgerald Date: Sun, 25 Feb 2018 23:19:03 -0800 Subject: [PATCH] remove dfrotz build dependencies As the intention of dfrotz is be dependency free, make it so at build time as well. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 66bbc79..2b4faa9 100644 --- a/Makefile +++ b/Makefile @@ -177,7 +177,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) sfrotz: $(SRCDIR)/frotz_common.a $(SDL_LIB) $(SRCDIR)/blorblib.a $(CC) $(CFLAGS) $^ -o $@$(EXTENSION) $(LDFLAGS) $(SDL_LDFLAGS) -- 2.34.1