blob: bbef03afe821cdb878feaca4225a9d023c9a105a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
libraries += libfetchers
libfetchers_NAME = libnixfetchers
libfetchers_DIR := $(d)
libfetchers_SOURCES := $(wildcard $(d)/*.cc)
libfetchers_CXXFLAGS += -I src/libutil -I src/libstore
libfetchers_LDFLAGS = -pthread
libfetchers_LIBS = libutil libstore
|