Browse Source

Windows make dist fix

tags/v0.5.0
Andrew Belt 7 years ago
parent
commit
84e9060c6a
1 changed files with 9 additions and 3 deletions
  1. +9
    -3
      Makefile

+ 9
- 3
Makefile View File

@@ -58,11 +58,17 @@ ifeq ($(ARCH), win)
endif endif


debug: $(TARGET) debug: $(TARGET)
ifeq ($(ARCH), lin)
LD_LIBRARY_PATH=dep/lib gdb -ex run ./Rack
endif
ifeq ($(ARCH), mac) ifeq ($(ARCH), mac)
DYLD_FALLBACK_LIBRARY_PATH=dep/lib gdb -ex run ./Rack DYLD_FALLBACK_LIBRARY_PATH=dep/lib gdb -ex run ./Rack
else
LD_LIBRARY_PATH=dep/lib gdb -ex run ./Rack
endif endif
ifeq ($(ARCH), win)
# TODO get rid of the mingw64 path
env PATH=dep/bin:/mingw64/bin gdb -ex run ./Rack
endif



clean: clean:
rm -rfv $(TARGET) build dist rm -rfv $(TARGET) build dist
@@ -137,7 +143,7 @@ ifeq ($(ARCH), win)
cp dep/bin/librtmidi-4.dll dist/Rack/ cp dep/bin/librtmidi-4.dll dist/Rack/
cp dep/bin/libsamplerate-0.dll dist/Rack/ cp dep/bin/libsamplerate-0.dll dist/Rack/
cp dep/bin/libzip-5.dll dist/Rack/ cp dep/bin/libzip-5.dll dist/Rack/
cp dep/bin/librtaudio-6.dll dist/Rack/
cp dep/bin/librtaudio.dll dist/Rack/
mkdir -p dist/Rack/plugins mkdir -p dist/Rack/plugins
cp -R plugins/Fundamental/dist/Fundamental dist/Rack/plugins/ cp -R plugins/Fundamental/dist/Fundamental dist/Rack/plugins/
# Make ZIP # Make ZIP


Loading…
Cancel
Save