|
@@ -105,10 +105,11 @@ ifeq ($(ARCH), mac) |
|
|
cp -R LICENSE* res $(BUNDLE)/Contents/Resources |
|
|
cp -R LICENSE* res $(BUNDLE)/Contents/Resources |
|
|
|
|
|
|
|
|
mkdir -p $(BUNDLE)/Contents/MacOS |
|
|
mkdir -p $(BUNDLE)/Contents/MacOS |
|
|
cp Rack $(BUNDLE)/Contents/MacOS/ |
|
|
|
|
|
|
|
|
cp $(TARGET) $(BUNDLE)/Contents/MacOS/ |
|
|
|
|
|
strip $(BUNDLE)/Contents/MacOS/$(TARGET) |
|
|
cp icon.icns $(BUNDLE)/Contents/Resources/ |
|
|
cp icon.icns $(BUNDLE)/Contents/Resources/ |
|
|
|
|
|
|
|
|
otool -L $(BUNDLE)/Contents/MacOS/Rack |
|
|
|
|
|
|
|
|
otool -L $(BUNDLE)/Contents/MacOS/$(TARGET) |
|
|
|
|
|
|
|
|
cp dep/lib/libGLEW.2.1.0.dylib $(BUNDLE)/Contents/MacOS/ |
|
|
cp dep/lib/libGLEW.2.1.0.dylib $(BUNDLE)/Contents/MacOS/ |
|
|
cp dep/lib/libglfw.3.dylib $(BUNDLE)/Contents/MacOS/ |
|
|
cp dep/lib/libglfw.3.dylib $(BUNDLE)/Contents/MacOS/ |
|
@@ -120,17 +121,17 @@ ifeq ($(ARCH), mac) |
|
|
cp dep/lib/librtmidi.4.dylib $(BUNDLE)/Contents/MacOS/ |
|
|
cp dep/lib/librtmidi.4.dylib $(BUNDLE)/Contents/MacOS/ |
|
|
cp dep/lib/libcrypto.1.1.dylib $(BUNDLE)/Contents/MacOS/ |
|
|
cp dep/lib/libcrypto.1.1.dylib $(BUNDLE)/Contents/MacOS/ |
|
|
|
|
|
|
|
|
install_name_tool -change /usr/local/lib/libGLEW.2.1.0.dylib @executable_path/libGLEW.2.1.0.dylib $(BUNDLE)/Contents/MacOS/Rack |
|
|
|
|
|
install_name_tool -change lib/libglfw.3.dylib @executable_path/libglfw.3.dylib $(BUNDLE)/Contents/MacOS/Rack |
|
|
|
|
|
install_name_tool -change $(PWD)/dep/lib/libjansson.4.dylib @executable_path/libjansson.4.dylib $(BUNDLE)/Contents/MacOS/Rack |
|
|
|
|
|
install_name_tool -change $(PWD)/dep/lib/libspeexdsp.1.dylib @executable_path/libspeexdsp.1.dylib $(BUNDLE)/Contents/MacOS/Rack |
|
|
|
|
|
install_name_tool -change $(PWD)/dep/lib/libcurl.4.dylib @executable_path/libcurl.4.dylib $(BUNDLE)/Contents/MacOS/Rack |
|
|
|
|
|
install_name_tool -change $(PWD)/dep/lib/libzip.5.dylib @executable_path/libzip.5.dylib $(BUNDLE)/Contents/MacOS/Rack |
|
|
|
|
|
install_name_tool -change librtaudio.dylib @executable_path/librtaudio.dylib $(BUNDLE)/Contents/MacOS/Rack |
|
|
|
|
|
install_name_tool -change $(PWD)/dep/lib/librtmidi.4.dylib @executable_path/librtmidi.4.dylib $(BUNDLE)/Contents/MacOS/Rack |
|
|
|
|
|
install_name_tool -change $(PWD)/dep/lib/libcrypto.1.1.dylib @executable_path/libcrypto.1.1.dylib $(BUNDLE)/Contents/MacOS/Rack |
|
|
|
|
|
|
|
|
|
|
|
otool -L $(BUNDLE)/Contents/MacOS/Rack |
|
|
|
|
|
|
|
|
install_name_tool -change /usr/local/lib/libGLEW.2.1.0.dylib @executable_path/libGLEW.2.1.0.dylib $(BUNDLE)/Contents/MacOS/$(TARGET) |
|
|
|
|
|
install_name_tool -change lib/libglfw.3.dylib @executable_path/libglfw.3.dylib $(BUNDLE)/Contents/MacOS/$(TARGET) |
|
|
|
|
|
install_name_tool -change $(PWD)/dep/lib/libjansson.4.dylib @executable_path/libjansson.4.dylib $(BUNDLE)/Contents/MacOS/$(TARGET) |
|
|
|
|
|
install_name_tool -change $(PWD)/dep/lib/libspeexdsp.1.dylib @executable_path/libspeexdsp.1.dylib $(BUNDLE)/Contents/MacOS/$(TARGET) |
|
|
|
|
|
install_name_tool -change $(PWD)/dep/lib/libcurl.4.dylib @executable_path/libcurl.4.dylib $(BUNDLE)/Contents/MacOS/$(TARGET) |
|
|
|
|
|
install_name_tool -change $(PWD)/dep/lib/libzip.5.dylib @executable_path/libzip.5.dylib $(BUNDLE)/Contents/MacOS/$(TARGET) |
|
|
|
|
|
install_name_tool -change librtaudio.dylib @executable_path/librtaudio.dylib $(BUNDLE)/Contents/MacOS/$(TARGET) |
|
|
|
|
|
install_name_tool -change $(PWD)/dep/lib/librtmidi.4.dylib @executable_path/librtmidi.4.dylib $(BUNDLE)/Contents/MacOS/$(TARGET) |
|
|
|
|
|
install_name_tool -change $(PWD)/dep/lib/libcrypto.1.1.dylib @executable_path/libcrypto.1.1.dylib $(BUNDLE)/Contents/MacOS/$(TARGET) |
|
|
|
|
|
|
|
|
|
|
|
otool -L $(BUNDLE)/Contents/MacOS/$(TARGET) |
|
|
|
|
|
|
|
|
mkdir -p $(BUNDLE)/Contents/Resources/plugins |
|
|
mkdir -p $(BUNDLE)/Contents/Resources/plugins |
|
|
cp -R plugins/Fundamental/dist/Fundamental $(BUNDLE)/Contents/Resources/plugins |
|
|
cp -R plugins/Fundamental/dist/Fundamental $(BUNDLE)/Contents/Resources/plugins |
|
|