mirror of https://github.com/snes9xgit/snes9x.git
unix/Makefile.in: Use CCFLAGS when making snes9x target
This commit is contained in:
parent
4b632fb830
commit
3b5dfdf788
|
@ -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 $@
|
||||
|
|
Loading…
Reference in New Issue