Mercurial > hg > vamp-plugin-sdk
comparison skeleton/Makefile.skeleton @ 337:d5c5a52e6c9f
Make the simple base-fft implementation accessible for use by plugins as well. Bump version to 2.4
author | Chris Cannam |
---|---|
date | Thu, 12 Jul 2012 11:37:31 +0100 |
parents | dba435f9b283 |
children |
comparison
equal
deleted
inserted
replaced
336:50df48a51c97 | 337:d5c5a52e6c9f |
---|---|
31 # project directory | 31 # project directory |
32 # | 32 # |
33 VAMP_SDK_DIR := ../vamp-plugin-sdk | 33 VAMP_SDK_DIR := ../vamp-plugin-sdk |
34 | 34 |
35 | 35 |
36 ## Uncomment these for an OS/X universal binary (PPC and 32- and | 36 ## Uncomment these for an OS/X universal binary (32- and 64-bit Intel) |
37 ## 64-bit Intel) supporting 10.4 or newer (if you have the 10.4 SDK): | 37 ## supporting 10.5 or newer. Use this if you have OS/X 10.7 with the |
38 ## Xcode 4 command-line tools. | |
38 | 39 |
39 # CXX := g++-4.0 | 40 # CXX := g++ |
40 # CXXFLAGS := -isysroot /Developer/SDKs/MacOSX10.4u.sdk -mmacosx-version-min=10.4 -arch i386 -arch x86_64 -arch ppc -I$(VAMP_SDK_DIR) -Wall -fPIC | 41 # CXXFLAGS := -mmacosx-version-min=10.5 -arch i386 -arch x86_64 -I$(VAMP_SDK_DIR) -Wall -fPIC |
41 # PLUGIN_EXT := .dylib | 42 # PLUGIN_EXT := .dylib |
42 # LDFLAGS := $(CXXFLAGS) -dynamiclib -install_name $(PLUGIN_LIBRARY_NAME)$(PLUGIN_EXT) $(VAMP_SDK_DIR)/libvamp-sdk.a -exported_symbols_list vamp-plugin.list | 43 # LDFLAGS := $(CXXFLAGS) -dynamiclib -install_name $(PLUGIN_LIBRARY_NAME)$(PLUGIN_EXT) $(VAMP_SDK_DIR)/libvamp-sdk.a -exported_symbols_list vamp-plugin.list |
43 | 44 |
44 | 45 |
45 ## Uncomment these for an OS/X universal binary (PPC and 32- and | 46 ## Uncomment these for an OS/X universal binary (PPC and 32- and |
46 ## 64-bit Intel) supporting 10.5 or newer (use this if you have the | 47 ## 64-bit Intel) supporting 10.5 or newer. Use this if you have OS/X |
47 ## default 10.6 developer tools): | 48 ## 10.6 with the Xcode 3 command-line tools. |
48 | 49 |
49 # CXXFLAGS := -isysroot /Developer/SDKs/MacOSX10.5.sdk -mmacosx-version-min=10.5 -arch i386 -arch x86_64 -arch ppc -I$(VAMP_SDK_DIR) -Wall -fPIC | 50 # CXXFLAGS := -isysroot /Developer/SDKs/MacOSX10.5.sdk -mmacosx-version-min=10.5 -arch i386 -arch x86_64 -arch ppc -I$(VAMP_SDK_DIR) -Wall -fPIC |
51 # PLUGIN_EXT := .dylib | |
52 # LDFLAGS := $(CXXFLAGS) -dynamiclib -install_name $(PLUGIN_LIBRARY_NAME)$(PLUGIN_EXT) $(VAMP_SDK_DIR)/libvamp-sdk.a -exported_symbols_list vamp-plugin.list | |
53 | |
54 | |
55 ## Uncomment these for an OS/X universal binary (PPC and 32- and | |
56 ## 64-bit Intel) supporting 10.4 or newer. Use this if you have OS/X | |
57 ## 10.4, 10.5 or 10.6 and you have the 10.4 SDK installed. | |
58 | |
59 # CXX := g++-4.0 | |
60 # CXXFLAGS := -isysroot /Developer/SDKs/MacOSX10.4u.sdk -mmacosx-version-min=10.4 -arch i386 -arch x86_64 -arch ppc -I$(VAMP_SDK_DIR) -Wall -fPIC | |
50 # PLUGIN_EXT := .dylib | 61 # PLUGIN_EXT := .dylib |
51 # LDFLAGS := $(CXXFLAGS) -dynamiclib -install_name $(PLUGIN_LIBRARY_NAME)$(PLUGIN_EXT) $(VAMP_SDK_DIR)/libvamp-sdk.a -exported_symbols_list vamp-plugin.list | 62 # LDFLAGS := $(CXXFLAGS) -dynamiclib -install_name $(PLUGIN_LIBRARY_NAME)$(PLUGIN_EXT) $(VAMP_SDK_DIR)/libvamp-sdk.a -exported_symbols_list vamp-plugin.list |
52 | 63 |
53 | 64 |
54 ## Uncomment these for Linux using the standard tools: | 65 ## Uncomment these for Linux using the standard tools: |