blob: 2e8869d83fa8442cfb668820ade18244096f259d (
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
|