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.
|
- #!/usr/bin/make -f
- # Makefile for carla-engine #
- # ------------------------- #
- # Created by falkTX
- #
-
- include ../Makefile.mk
-
- # --------------------------------------------------------------
-
- OBJS = \
- CarlaEngine.cpp.o \
- CarlaEngineOsc.cpp.o \
- CarlaEngineThread.cpp.o
-
- OBJSa = $(OBJS) \
- CarlaEngineNative.cpp.o \
- CarlaEngineJack.cpp.o \
- CarlaEngineRtAudio.cpp.o
-
- ifeq ($(HAVE_JUCE),true)
- OBJSa += \
- CarlaEngineJuce.cpp.o
- endif
-
- OBJSp = $(OBJS) \
- CarlaEngineNative.cpp.exp.o
-
- HEADERS = \
- ../CarlaBackend.h ../CarlaEngine.hpp ../CarlaPlugin.hpp \
- CarlaEngineInternal.hpp CarlaEngineOsc.hpp CarlaEngineThread.hpp
-
- TARGETa = ../carla_engine.a
- TARGETp = ../carla_engine_plugin.a
-
- # --------------------------------------------------------------
-
- all: $(TARGETa) $(TARGETp)
-
- # --------------------------------------------------------------
-
- %.cpp.o: %.cpp $(HEADERS)
- $(CXX) $< $(BUILD_CXX_FLAGS) -c -o $@
-
- %.cpp.exp.o: %.cpp $(HEADERS)
- $(CXX) $< $(BUILD_CXX_FLAGS) -DCARLA_PLUGIN_EXPORT -c -o $@
-
- CarlaEngineRtAudio.cpp.o: CarlaEngineRtAudio.cpp $(HEADERS)
- $(CXX) $< $(BUILD_CXX_FLAGS) $(RTAUDIO_FLAGS) $(RTMIDI_FLAGS) -c -o $@
-
- $(TARGETa): $(OBJSa)
- $(RM) $@
- $(AR) crs $@ $^
-
- $(TARGETp): $(OBJSp)
- $(RM) $@
- $(AR) crs $@ $^
-
- # --------------------------------------------------------------
-
- clean:
- $(RM) $(OBJS) $(OBJSp) $(TARGET) $(TARGETp)
-
- debug:
- $(MAKE) DEBUG=true
-
- # --------------------------------------------------------------
|