Fix final binaries not updated when carla static lib changes

This commit is contained in:
falkTX 2021-12-08 18:26:55 +00:00
parent 4280063e19
commit e739598100

View file

@ -60,13 +60,13 @@ endif
# CARLA_EXTRA_LIBS += -Wl,--no-whole-archive -Wl,--end-group # CARLA_EXTRA_LIBS += -Wl,--no-whole-archive -Wl,--end-group
# endif # endif
STATIC_CARLA_PLUGIN_LIBS += $(CARLA_EXTRA_LIBS)
# FIXME patch fluidsynth package # FIXME patch fluidsynth package
ifeq ($(WINDOWS),true) ifeq ($(WINDOWS),true)
STATIC_CARLA_PLUGIN_LIBS += -ldsound -lwinmm STATIC_CARLA_PLUGIN_LIBS += -ldsound -lwinmm
endif endif
CARLA_EXTRA_LIBS += $(STATIC_CARLA_PLUGIN_LIBS)
# -------------------------------------------------------------- # --------------------------------------------------------------
# Import base definitions # Import base definitions
@ -109,8 +109,8 @@ endif
# -------------------------------------------------------------- # --------------------------------------------------------------
EXTRA_DEPENDENCIES = $(RACK_EXTRA_LIBS) EXTRA_DEPENDENCIES = $(CARLA_EXTRA_LIBS) $(RACK_EXTRA_LIBS)
EXTRA_LIBS = $(CARLA_EXTRA_LIBS) $(RACK_EXTRA_LIBS) EXTRA_LIBS = $(STATIC_CARLA_PLUGIN_LIBS) $(RACK_EXTRA_LIBS)
# -------------------------------------------------------------- # --------------------------------------------------------------
# Do some magic # Do some magic