diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2018-02-13T11·15+0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2018-02-13T11·15+0100 |
commit | 1c10a74c73e710d164d9e5c527f98b309a6f7b2c (patch) | |
tree | 11d7729c31624fe452ef8ee1727bc16b229a2583 /mk | |
parent | c5cc57e96220cd3ed915875f3b1eeb2ba1f98a30 (diff) | |
parent | 88cd2d41acb994684a3e4ead1b1676019f43b4b6 (diff) |
Merge branch 'plugins' of https://github.com/shlevy/nix
Diffstat (limited to 'mk')
-rw-r--r-- | mk/libraries.mk | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mk/libraries.mk b/mk/libraries.mk index 3cd7a53107bd..14c95fa91cf6 100644 --- a/mk/libraries.mk +++ b/mk/libraries.mk @@ -45,6 +45,11 @@ endif # - $(1)_INSTALL_DIR: the directory where the library will be # installed. Defaults to $(libdir). # +# - $(1)_EXCLUDE_FROM_LIBRARY_LIST: if defined, the library will not +# be automatically marked as a dependency of the top-level all +# target andwill not be listed in the make help output. This is +# useful for libraries built solely for testing, for example. +# # - BUILD_SHARED_LIBS: if equal to ‘1’, a dynamic library will be # built, otherwise a static library. define build-library @@ -149,7 +154,9 @@ define build-library $(1)_DEPS := $$(foreach fn, $$($(1)_OBJS), $$(call filename-to-dep, $$(fn))) -include $$($(1)_DEPS) + ifndef $(1)_EXCLUDE_FROM_LIBRARY_LIST libs-list += $$($(1)_PATH) + endif clean-files += $$(_d)/*.a $$(_d)/*.$(SO_EXT) $$(_d)/*.o $$(_d)/.*.dep $$($(1)_DEPS) $$($(1)_OBJS) dist-files += $$(_srcs) endef |