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.

46 lines
909B

  1. #!/usr/bin/make -f
  2. # Makefile for rtmidi #
  3. # ------------------- #
  4. # Created by falkTX
  5. #
  6. include ../../Makefile.mk
  7. # --------------------------------------------------------------
  8. BUILD_CXX_FLAGS += $(RTMIDI_FLAGS) -I. -Iinclude -I.. -I../../includes
  9. # --------------------------------------------------------------
  10. OBJS = \
  11. RtMidi.cpp.o
  12. TARGETS = \
  13. ../rtmidi.a
  14. # --------------------------------------------------------------
  15. all: $(TARGETS)
  16. # --------------------------------------------------------------
  17. clean:
  18. $(RM) $(OBJS)
  19. $(RM) $(TARGETS)
  20. debug:
  21. $(MAKE) DEBUG=true
  22. # --------------------------------------------------------------
  23. ../rtmidi.a: $(OBJS)
  24. $(RM) $@
  25. $(AR) crs $@ $^
  26. # --------------------------------------------------------------
  27. RtMidi.cpp.o: RtMidi.cpp RtMidi.h
  28. $(CXX) $< $(BUILD_CXX_FLAGS) -c -o $@
  29. # --------------------------------------------------------------