Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Makefile 551B

12345678910111213141516171819202122232425
  1. #!/usr/bin/make -f
  2. # Makefile for carla tests #
  3. # ------------------------ #
  4. # Created by falkTX
  5. #
  6. # --------------------------------------------------------------
  7. CXX ?= g++
  8. BUILD_FLAGS = -Wall -Wextra -Werror -pipe -DDEBUG -O0 -g
  9. # --------------------------------------------------------------
  10. all: test
  11. test: jack-enum-test-func.cpp jack-enum-test-main.cpp
  12. $(CXX) $^ $(BUILD_FLAGS) -o $@
  13. # --------------------------------------------------------------
  14. clean:
  15. rm -f test
  16. # --------------------------------------------------------------