eirexe

Untitled

Jun 27th, 2013
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. CXX=g++
  2. CXXFLAGS=-Wall -W -pedantic -Ofast -std=c++0x
  3. CXXFLAGS += `pkg-config sdl --libs --cflags`
  4.  
  5. nesemu1: emu1.o
  6. $(CXX) -o "$@" "$<" $(CXXFLAGS)
  7.  
  8. nesemu1.o: emu1.cc
  9. $(CXX) -c -o "$@" "$<" $(CXXFLAGS)
Advertisement
Add Comment
Please, Sign In to add comment