From 6a6c1acc92a4ad77f93c7508fc70705ce88fcb6d Mon Sep 17 00:00:00 2001 From: David Griffith Date: Sun, 9 Aug 2015 15:46:52 -0700 Subject: [PATCH] Fix #19, minor nit of unused variables in the Makefile. --- Makefile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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 -- 2.34.1