Advertisement
Guest User

Untitled

a guest
Sep 26th, 2013
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.25 KB | None | 0 0
  1. # where are the Max/MSP SDK header files?
  2. # you should have the latest version!
  3. MAXSDKPATH=/Applications/Max\ 6.1/MaxSDK/c74support
  4.  
  5. ###############################################################
  6.  
  7. # prefix for flext installation
  8. # headers are in $(FLEXTPREFIX)/include/flext
  9. # libraries are in $(FLEXTPREFIX)/lib
  10. # build system is in $(FLEXTPREFIX)/lib/flext
  11.  
  12. FLEXTPREFIX=/usr/local
  13.  
  14. ###############################################################
  15.  
  16. # where should the external be built?
  17. OUTPATH=max-darwin
  18.  
  19. # where should the external be installed?
  20. INSTPATH=/Applications/Max 6.1/Cycling\ \'74/externals/flext
  21.  
  22. # where should the initialization files be installed?
  23. INITPATH=/Applications/Max 6.1/Cycling\ \'74/init
  24.  
  25. # where should the help files be installed?
  26. HELPPATH=/Applications/Max 6.1/max-help/flext
  27.  
  28. ###############################################################
  29.  
  30. # STK (synthesis tool kit) support
  31. # http://ccrma.stanford.edu/software/stk
  32.  
  33. # where to find the STK header files (e.g. stk.h)
  34. #STK_INC=/usr/local/include/stk
  35.  
  36. # where to find the STK library (normally libstk.a)
  37. # (comment out STK_LIB if you don't use STK)
  38. #STK_LIB=/usr/local/lib/libstk.a
  39.  
  40. ###############################################################
  41.  
  42. # SndObj support
  43. # http://music.nuim.ie//musictec/SndObj
  44.  
  45. # where to find the SndObj header files (e.g. sndobj.h)
  46. #SNDOBJ_INC=/usr/local/include/sndobj
  47.  
  48. # where to find the SndObj library (normally libsndobj.a)
  49. # (comment out STK_LIB if you don't use SndObj)
  50. #SNDOBJ_LIB=/usr/local/lib/libsndobj.a
  51.  
  52. ###############################################################
  53.  
  54. # make flags (e.g. use multiprocessor)
  55. MFLAGS=-j 2
  56.  
  57. # user defined compiler flags
  58. UFLAGS += -ffast-math -mmacosx-version-min=10.4
  59.  
  60. # user defined linker flags
  61. LDFLAGS += -mmacosx-version-min=10.4
  62.  
  63. # user defined optimization flags
  64. OFLAGS += -Os # -ftree-vectorize
  65.  
  66. # user defined debugging flags
  67. DFLAGS +=
  68.  
  69. # architecture-specific flags (optional)
  70. UFLAGS_x86_64 += -mmmx -msse -msse2 -msse3 -mtune=nocona
  71. OFLAGS_x86_64 +=
  72. DFLAGS_x86_64 +=
  73.  
  74. UFLAGS_i386 += -mmmx -msse -msse2 -msse3 -mtune=nocona
  75. OFLAGS_i386 +=
  76. DFLAGS_i386 +=
  77.  
  78. # cross-compilation (optional)
  79. ARCH=x86_64 #i386
  80.  
  81. # SDK for 10.4
  82. #OSXSDK=/Developer/SDKs/MacOSX10.4u.sdk
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement