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.

36 lines
752B

  1. #!/usr/bin/make -f
  2. # Makefile for carla-standalone #
  3. # --------------------------------------- #
  4. # Created by falkTX
  5. #
  6. include ../Makefile.mk
  7. # --------------------------------------------------------------
  8. # LINK_FLAGS += -shared
  9. LINK_FLAGS += -Wl,-rpath,. -L.. -lcarla_engine -lcarla_native -lcarla_plugin
  10. # --------------------------------------------------------------
  11. OBJS = \
  12. carla_standalone.cpp.o
  13. TARGET = ../carla_standalone
  14. #lib*.so
  15. # --------------------------------------------------------------
  16. all: $(TARGET)
  17. clean:
  18. rm -f $(OBJS) $(TARGET)
  19. # --------------------------------------------------------------
  20. %.cpp.o: %.cpp
  21. $(CXX) $< $(BUILD_CXX_FLAGS) -c -o $@
  22. $(TARGET): $(OBJS)
  23. $(CXX) $^ $(LINK_FLAGS) -o $@