Advertisement
Guest User

Makefile.x64Linux2.6gcc4.4.5

a guest
Mar 3rd, 2014
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. # Defines required Make variables. They will be used in the Makefile.common
  2. # to define the rules to define the build process for this application.
  3. ARCH=x64Linux2.6gcc4.4.5
  4.  
  5. CXX = g++
  6. CXXFLAGS = -DRTI_UNIX -DRTI_LINUX -DRTI_64BIT
  7. WX_FLAGS = -D_FILE_OFFSET_BITS=64 -DWXUSINGDLL -D__WXGTK__
  8. CXXLD = g++
  9. CXXLDFLAGS = -static-libgcc
  10. SYSLIBS = -ldl -lnsl -lm -lpthread -lrt
  11.  
  12. # The rest of the rules are in the 'Makefile.common'
  13. include make/Makefile.common
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement