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.mk 969B

10 years ago
123456789101112131415161718192021222324252627282930313233
  1. #!/usr/bin/make -f
  2. # Makefile for carla modules #
  3. # -------------------------- #
  4. # Created by falkTX
  5. #
  6. ifeq ($(CWD),)
  7. $(error CWD not defined)
  8. endif
  9. ifeq ($(MODULENAME),)
  10. $(error MODULENAME not defined)
  11. endif
  12. include $(CWD)/Makefile.mk
  13. # ----------------------------------------------------------------------------------------------------------------------------
  14. BINDIR := $(CWD)/../bin
  15. ifeq ($(DEBUG),true)
  16. OBJDIR := $(CWD)/../build/$(MODULENAME)/Debug
  17. MODULEDIR := $(CWD)/../build/modules/Debug
  18. else
  19. OBJDIR := $(CWD)/../build/$(MODULENAME)/Release
  20. MODULEDIR := $(CWD)/../build/modules/Release
  21. endif
  22. # ----------------------------------------------------------------------------------------------------------------------------
  23. BUILD_C_FLAGS += -I. -I$(CWD)/includes
  24. BUILD_CXX_FLAGS += -I. -I$(CWD)/includes -I$(CWD)/utils
  25. # ----------------------------------------------------------------------------------------------------------------------------