From c7abfb8f187b5705aefcb5eb188e48dcc01acb1b Mon Sep 17 00:00:00 2001 From: Ivan Yarcev Date: Tue, 11 Jul 2023 14:49:48 +0600 Subject: [PATCH] Removed backend --- Makefile | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 1afbbfa..a2bb33c 100644 --- a/Makefile +++ b/Makefile @@ -70,7 +70,10 @@ check: build: depend prepare @echo "Build ..."; \ make --directory=${CMAKE_BUILD_DIR}; \ - echo "Build: OK" + echo "Build: OK"; \ + cd ubl-settings-repo-back; \ + make ; \ + cd ../ uninstall: @echo "Uninstall ..." @@ -132,13 +135,19 @@ install: check uninstall [ -d "${DESTDIR}${PREFIX}/share/icons/hicolor/" ] && gtk-update-icon-cache -fiq "${DESTDIR}${PREFIX}/share/icons/hicolor/" &>/dev/null || true; \ update-desktop-database --quiet &>/dev/null || true; \ [ -d "${DESTDIR}${PREFIX}/share/applications" ] && touch "${DESTDIR}${PREFIX}/share/applications" &>/dev/null || true; \ - fi; + fi; \ + cd ./ubl-settings-repo-back; \ + make install; \ + cd ../ @echo "Install: OK" @sed -r "s/^(string version_application=\"*\").*/string version_application;/" -i source/${PKGNAME}.h; \ clean: @echo "Clean ..." - @$(RM) -rd ${CMAKE_BUILD_DIR} + @$(RM) -rd ${CMAKE_BUILD_DIR}; \ + cd ./ubl-settings-repo-back; \ + make clean; \ + cd ../ @if [ -d ${CMAKE_BUILD_DIR} ]; then \ echo "Clean: error, compile directory exist ${CMAKE_BUILD_DIR}"; \ else \