Browse Source

Fix plugin build

tags/1.9.4
falkTX 10 years ago
parent
commit
54b89ea9fb
1 changed files with 10 additions and 0 deletions
  1. +10
    -0
      Makefile

+ 10
- 0
Makefile 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



Loading…
Cancel
Save