Browse Source

install util headers during "make install"

Signed-off-by: falkTX <falktx@falktx.com>
tags/v2.5.5
falkTX 1 year ago
parent
commit
2f2d4f2b5e
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 21 additions and 2 deletions
  1. +21
    -2
      Makefile

+ 21
- 2
Makefile View File

@@ -446,6 +446,7 @@ else
endif endif
install -d $(DESTDIR)$(LIBDIR)/pkgconfig install -d $(DESTDIR)$(LIBDIR)/pkgconfig
install -d $(DESTDIR)$(INCLUDEDIR)/carla/includes install -d $(DESTDIR)$(INCLUDEDIR)/carla/includes
install -d $(DESTDIR)$(INCLUDEDIR)/carla/utils
ifeq ($(LINUX),true) ifeq ($(LINUX),true)
ifeq ($(HAVE_JACK),true) ifeq ($(HAVE_JACK),true)
ifeq ($(JACKBRIDGE_DIRECT),true) ifeq ($(JACKBRIDGE_DIRECT),true)
@@ -550,8 +551,6 @@ endif
source/backend/CarlaEngine.hpp \ source/backend/CarlaEngine.hpp \
source/backend/CarlaPlugin.hpp \ source/backend/CarlaPlugin.hpp \
source/backend/CarlaPluginPtr.hpp \ source/backend/CarlaPluginPtr.hpp \
source/includes/CarlaNative.h \
source/includes/CarlaNativePlugin.h \
$(DESTDIR)$(INCLUDEDIR)/carla $(DESTDIR)$(INCLUDEDIR)/carla


install -m 644 \ install -m 644 \
@@ -561,6 +560,26 @@ endif
source/includes/CarlaNativePlugin.h \ source/includes/CarlaNativePlugin.h \
$(DESTDIR)$(INCLUDEDIR)/carla/includes $(DESTDIR)$(INCLUDEDIR)/carla/includes


install -m 644 \
source/utils/CarlaBackendUtils.hpp \
source/utils/CarlaBase64Utils.hpp \
source/utils/CarlaBinaryUtils.hpp \
source/utils/CarlaBridgeDefines.hpp \
source/utils/CarlaBridgeUtils.hpp \
source/utils/CarlaMacUtils.hpp \
source/utils/CarlaMathUtils.hpp \
source/utils/CarlaMutex.hpp \
source/utils/CarlaRingBuffer.hpp \
source/utils/CarlaProcessUtils.hpp \
source/utils/CarlaRunner.hpp \
source/utils/CarlaScopeUtils.hpp \
source/utils/CarlaSemUtils.hpp \
source/utils/CarlaShmUtils.hpp \
source/utils/CarlaString.hpp \
source/utils/CarlaThread.hpp \
source/utils/CarlaUtils.hpp \
$(DESTDIR)$(INCLUDEDIR)/carla/utils

# ------------------------------------------------------------------------------------------------------------- # -------------------------------------------------------------------------------------------------------------


ifeq ($(HAVE_PYQT),true) ifeq ($(HAVE_PYQT),true)


Loading…
Cancel
Save