From: David Griffith Date: Sun, 9 Aug 2015 22:46:52 +0000 (-0700) Subject: Fix #19, minor nit of unused variables in the Makefile. X-Git-Url: https://scope-eye.net/git/?a=commitdiff_plain;h=6a6c1acc92a4ad77f93c7508fc70705ce88fcb6d;p=liskon_frotz.git Fix #19, minor nit of unused variables in the Makefile. --- diff --git a/Makefile b/Makefile index 96cf7f4..ec38050 100644 --- a/Makefile +++ b/Makefile @@ -189,8 +189,6 @@ OPT_DEFS = -DCONFIG_DIR="\"$(CONFIG_DIR)\"" $(CURSES_DEF) \ CURSES_DEFS = $(OPT_DEFS) $(COLOR_DEFS) $(SOUND_DEFS) $(SOUNDCARD) \ $(MEMMOVE_DEF) -FLAGS = $(OPTS) $(CURSES_DEFS) $(INCL) - $(NAME): $(NAME)-curses curses: $(NAME)-curses @@ -223,10 +221,10 @@ $(DUMB_OBJECT): %.o: %.c $(CC) $(OPTS) -o $@ -c $< $(CURSES_OBJECT): %.o: %.c - $(CC) $(OPTS) $(CURSES_DEFS) -o $@ -c $< + $(CC) $(OPTS) $(CURSES_DEFS) $(INCL) -o $@ -c $< $(SDL_OBJECT): %.o: %.c - $(CC) $(OPTS) $(SDL_DEFS) -o $@ -c $< + $(CC) $(OPTS) $(SDL_DEFS) $(INCL) -o $@ -c $< # If you're going to make this target manually, you'd better know which