eirexe

Untitled

Jun 27th, 2013
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. # Create the Make rules for nesemu1
  2. #
  3. CXX=mipsel-linux-g++
  4. CXXFLAGS=-Wall -W -pedantic -Ofast -std=c++0x -lSDL -lSDL_image -lSDL_ttf -lSDL_mixer -lSDL_net -I/opt/gcw0-toolchain/usr/mipsel-gcw0-linux-uclibc/sysroot/usr/include/SDL/
  5.  
  6. nesemu1: nesemu1.o
  7. $(CXX) -o "$@" "$<" $(CXXFLAGS)
  8.  
  9. nesemu1.o: nesemu1.cc
  10. $(CXX) -c -o "$@" "$<" $(CXXFLAGS)
Advertisement
Add Comment
Please, Sign In to add comment