build-common

Shared build system code (usually as a git submodule)
Log | Files | Refs | README | LICENSE

Makefile.inc (1163B)


      1 # This file has to be copied into the directory one level above.
      2 # This also means (obviously): this file is excluded from including
      3 # itself.
      4 
      5 BUILDCOMMON_SHLIB_FILES = \
      6     build-common/LICENSE
      7 
      8 BUILDCOMMON_CONF_FILES = \
      9     build-common/conf/.dir-locals.el \
     10     build-common/conf/.prettierrc \
     11     build-common/conf/.style.yapf \
     12     build-common/conf/.vscode/settings.json \
     13     build-common/conf/.vscode/tasks.json \
     14     build-common/conf/.yarnrc \
     15     build-common/conf/uncrustify-mode.el \
     16     build-common/conf/uncrustify.cfg \
     17     build-common/conf/uncrustify.el \
     18     build-common/conf/uncrustify.sh \
     19     build-common/conf/uncrustify_precommit
     20 
     21 BUILDCOMMON_BUILD_FILES = \
     22     build-common/bootstrap.template \
     23     build-common/configure \
     24     build-common/configure.py.template \
     25     build-common/talerbuildconfig.py \
     26     build-common/testconfigure.py
     27 
     28 BUILDCOMMON_DOC_FILES = \
     29     build-common/README
     30 
     31 BUILDCOMMON_SCRIPT_FILES = \
     32     build-common/coverage.sh
     33 
     34 BUILD_COMMON_FILES = \
     35     $(BUILDCOMMON_SHLIB_FILES) \
     36     $(BUILDCOMMON_CONF_FILES) \
     37     $(BUILDCOMMON_BUILD_FILES) \
     38     $(BUILDCOMMON_DOC_FILES) \
     39     $(BUILDCOMMON_SCRIPT_FILES)