## @id $Id$ ## ## This file has been added: ## - by bootstrap.sh ## - on Wed, 04 April 2018 14:27:37 +0200 ## Feel free to change it or even remove and rebuild it, up to your needs ## ## 1 2 3 4 5 6 7 8 ## 45678901234567890123456789012345678901234567890123456789012345678901234567890 bin_PROGRAMS = certman ## required to enable the translation feature LANGUAGE_FILE_BASE = certman ## list here the Qt plugins your project depends on ## required to build Mac OS-X app-bundle QT_PLUGINS = iconengines imageformats platforms #### enable (ev. instead of bin_PROGRAMS) if you build a library #lib_LTLIBRARIES = certman.la #certman_la_SOURCES = libmain.cxx version.cxx ## noop to prevent: ## «src/makefile.am: error: object 'version.$(OBJEXT)' created both with ## libtool and without» #certman_la_CXXFLAGS = $(AM_CXXFLAGS) ## list headers that are required for build, but that are not installed noinst_HEADERS = version.hxx ## list all %.hxx files with Q_OBJECT as moc_%.cxx certman_MOCFILES = moc_certman.cxx moc_certificate.cxx moc_openfromurl.cxx ## list all %.ui files as ui_%.hxx certman_UIFILES = ui_certman.hxx ui_certificate.hxx ui_openfromurl.hxx ## list all %.qrc resource files as qrc_%.cxx ## note: if there exists a directory %, the file %.qrc is generated from that certman_RESOURCES = qrc_languages.cxx # qrc_resources.cxx ## list all final translation files, list all supported languages here certman_TRANSLATIONS = ${LANGUAGE_FILE_BASE}_en.qm \ ${LANGUAGE_FILE_BASE}_de.qm \ ${LANGUAGE_FILE_BASE}_fr.qm \ ${LANGUAGE_FILE_BASE}_it.qm ## list all C++ files that need translation certman_TR_FILES = main.cxx version.cxx ## automatic assembly, no need to change certman_SOURCES = ${certman_TR_FILES} ${BUILT_SOURCES} ## automatic assembly, no need to change BUILT_SOURCES = ${certman_MOCFILES} \ ${certman_UIFILES} \ ${certman_TRANSLATIONS} \ ${certman_RESOURCES} ## automatic assembly, no need to change EXTRA_DIST_TR = ${certman_MOCFILES:moc_%.cxx=%.hxx} \ ${certman_UIFILES:ui_%.hxx=%.ui} ## automatic assembly, no need to change ## except: adapt the pre-delivered qt_%.qm list (language files you copy from qt EXTRA_DIST = ${EXTRA_DIST_TR} \ ${certman_RESOURCES:qrc_%.cxx=%.qrc} \ ${certman_TRANSLATIONS:%.qm=%.ts} ## automatic assembly, no need to change LANGUAGE_FILES = ${EXTRA_DIST_TR} ${certman_TR_FILES} CLEANFILES = ${certman_RESOURCES} MAINTAINERCLEANFILES = makefile.in