From dadf6817dbcf5cf36d5618af80cb17be3649563c Mon Sep 17 00:00:00 2001 From: David Griffith Date: Fri, 24 Aug 2012 21:34:13 -0700 Subject: [PATCH] Enabling compile options --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index bc0d315..dbdda69 100644 --- a/Makefile +++ b/Makefile @@ -214,19 +214,19 @@ all: $(NAME) d$(NAME) .SUFFIXES: .c .o .h $(COMMON_OBJECT): %.o: %.c - $(CC) $(COMMON_DEFS) -o $@ -c $< + $(CC) $(OPTS) $(COMMON_DEFS) -o $@ -c $< $(BLORB_OBJECT): %.o: %.c - $(CC) -o $@ -c $< + $(CC) $(OPTS) -o $@ -c $< $(DUMB_OBJECT): %.o: %.c - $(CC) -o $@ -c $< + $(CC) $(OPTS) -o $@ -c $< $(CURSES_OBJECT): %.o: %.c - $(CC) $(CURSES_DEFS) -o $@ -c $< + $(CC) $(OPTS) $(CURSES_DEFS) -o $@ -c $< $(SDL_OBJECT): %.o: %.c - $(CC) $(SDL_DEFS) -o $@ -c $< + $(CC) $(OPTS) $(SDL_DEFS) -o $@ -c $< # If you're going to make this target manually, you'd better know which -- 2.34.1