Fix plugin build

This commit is contained in:
falkTX 2014-06-11 19:18:44 +01:00
parent 10022f78cb
commit 54b89ea9fb
1 changed files with 10 additions and 0 deletions

View File

@ -32,6 +32,10 @@ BIN: libs backend bridges discovery plugin theme
# --------------------------------------------------------------
ALL_LIBS += source/backend/carla_engine.a
ALL_LIBS += source/backend/carla_engine_plugin.a
ALL_LIBS += source/backend/carla_plugin.a
ifeq ($(HAVE_AF_DEPS),true)
ALL_LIBS += source/modules/audio_decoder.a
endif
@ -74,6 +78,12 @@ endif
libs: $(ALL_LIBS)
source/backend/carla_%.a: .FORCE
$(MAKE) -C source/backend/$* ../carla_$*.a
source/backend/carla_%_plugin.a: .FORCE
$(MAKE) -C source/backend/$* ../carla_$*_plugin.a
source/modules/%.a: .FORCE
$(MAKE) -C source/modules/$* ../$*.a