mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-15 02:36:16 +02:00
e0b159549b
1. Fix build by making the legacy SSH Storey's secret `logFD` setting not a setting on Windows. (It doesn't make sense to specify `void *` handles by integer cross-proccess, I don't think.) 2. Move some files that don't need to be Unix-only anymore back to their original locations.
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
|