diff --git a/Makefile b/Makefile index 56d6863b..0413a812 100644 --- a/Makefile +++ b/Makefile @@ -73,7 +73,7 @@ endif perf: $(TARGET) ifdef ARCH_LIN - perf record --call-graph dwarf ./Rack + perf record --call-graph dwarf ./$< endif clean: diff --git a/dep/Makefile b/dep/Makefile index 460c2fdf..53e61f8d 100755 --- a/dep/Makefile +++ b/dep/Makefile @@ -138,15 +138,6 @@ ifdef ARCH_LIN RTAUDIO_FLAGS += -DAUDIO_LINUX_ALSA=ON -DAUDIO_UNIX_JACK=ON endif -ifdef RTAUDIO_ALL_APIS -ifdef ARCH_MAC -RTAUDIO_FLAGS += -DAUDIO_UNIX_JACK=ON -endif -ifdef ARCH_LIN -RTAUDIO_FLAGS += -DAUDIO_LINUX_PULSE=ON -endif -endif - $(rtaudio): cd rtaudio && mkdir -p build cd rtaudio/build && $(CMAKE) $(RTAUDIO_FLAGS) ..