Browse Source

Merge branch 'master' of github.com:VCVRack/Rack

pull/1639/head
Andrew Belt 7 years ago
parent
commit
17e216e52f
1 changed files with 2 additions and 3 deletions
  1. +2
    -3
      Makefile

+ 2
- 3
Makefile View File

@@ -60,8 +60,7 @@ ifeq ($(ARCH), mac)
DYLD_FALLBACK_LIBRARY_PATH=dep/lib ./$< DYLD_FALLBACK_LIBRARY_PATH=dep/lib ./$<
endif endif
ifeq ($(ARCH), win) ifeq ($(ARCH), win)
# TODO get rid of the mingw64 path
env PATH=${PATH}:dep/bin ./$<
env PATH="$(PATH)":dep/bin ./$<
endif endif


debug: $(TARGET) debug: $(TARGET)
@@ -72,7 +71,7 @@ ifeq ($(ARCH), mac)
DYLD_FALLBACK_LIBRARY_PATH=dep/lib gdb -ex run ./Rack DYLD_FALLBACK_LIBRARY_PATH=dep/lib gdb -ex run ./Rack
endif endif
ifeq ($(ARCH), win) ifeq ($(ARCH), win)
env PATH=${PATH}:dep/bin gdb -ex run ./Rack
env PATH="$(PATH)":dep/bin gdb -ex run ./Rack
endif endif


perf: $(TARGET) perf: $(TARGET)


Loading…
Cancel
Save