mirror of
https://github.com/NixOS/nix.git
synced 2025-11-25 11:49:35 +01:00
This will facilitate breaking up Nix into multiple packages for each component with Meson.
17 lines
445 B
Makefile
17 lines
445 B
Makefile
libraries += libfetchers
|
|
|
|
libfetchers_NAME = libnixfetchers
|
|
|
|
libfetchers_DIR := $(d)
|
|
|
|
libfetchers_SOURCES := $(wildcard $(d)/*.cc)
|
|
|
|
# Not just for this library itself, but also for downstream libraries using this library
|
|
|
|
INCLUDE_libfetchers := -I $(d)
|
|
|
|
libfetchers_CXXFLAGS += $(INCLUDE_libutil) $(INCLUDE_libstore) $(INCLUDE_libfetchers)
|
|
|
|
libfetchers_LDFLAGS += $(THREAD_LDFLAGS) $(LIBGIT2_LIBS) -larchive
|
|
|
|
libfetchers_LIBS = libutil libstore
|