From 3b5dfdf78835f422ae31037e1c6ec6d29e5f6ff1 Mon Sep 17 00:00:00 2001 From: GOUJON Alexandre Date: Fri, 19 Jul 2013 11:30:51 +0200 Subject: [PATCH] unix/Makefile.in: Use CCFLAGS when making snes9x target --- unix/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unix/Makefile.in b/unix/Makefile.in index 415f987b..c127e6ee 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -52,7 +52,7 @@ configure: configure.ac exit 1 snes9x: $(OBJECTS) - $(CCC) $(INCLUDES) -o $@ $(OBJECTS) -lm @S9XLIBS@ + $(CCC) $(INCLUDES) $(CCFLAGS) -o $@ $(OBJECTS) -lm @S9XLIBS@ ../jma/s9x-jma.o: ../jma/s9x-jma.cpp $(CCC) $(INCLUDES) -c $(CCFLAGS) -fexceptions $*.cpp -o $@