remove dfrotz build dependencies
authorSean Fitzgerald <sean@fitzgeralds.me>
Mon, 26 Feb 2018 07:19:03 +0000 (23:19 -0800)
committerDavid Griffith <dave@661.org>
Sun, 11 Mar 2018 11:48:50 +0000 (04:48 -0700)
As the intention of dfrotz is be dependency free, make it so at build time as well.

Makefile

index 66bbc79428e92c7e5726f6aad416455a72fad395..2b4faa9a01603d2c6d0f4473467359c98f735464 100644 (file)
--- 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)