From: Sean Fitzgerald Date: Mon, 26 Feb 2018 07:19:03 +0000 (-0800) Subject: remove dfrotz build dependencies X-Git-Url: https://scope-eye.net/git/?a=commitdiff_plain;h=051882415db985213646215bd7acb9768bb64afe;p=liskon_frotz.git remove dfrotz build dependencies As the intention of dfrotz is be dependency free, make it so at build time as well. --- 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)