unix/Makefile.in: Use CCFLAGS when making snes9x target

This commit is contained in:
GOUJON Alexandre 2013-07-19 11:30:51 +02:00
parent 4b632fb830
commit 3b5dfdf788
1 changed files with 1 additions and 1 deletions

View File

@ -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 $@