From: David Griffith Date: Sat, 25 Aug 2012 04:34:13 +0000 (-0700) Subject: Enabling compile options X-Git-Url: https://scope-eye.net/git/?a=commitdiff_plain;h=dadf6817dbcf5cf36d5618af80cb17be3649563c;p=liskon_frotz.git Enabling compile options --- 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