mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 00:36:20 +02:00
43509cc69d
fixes: #5931
15 lines
387 B
Makefile
15 lines
387 B
Makefile
libraries += libcmd
|
|
|
|
libcmd_NAME = libnixcmd
|
|
|
|
libcmd_DIR := $(d)
|
|
|
|
libcmd_SOURCES := $(wildcard $(d)/*.cc)
|
|
|
|
libcmd_CXXFLAGS += -I src/libutil -I src/libstore -I src/libexpr -I src/libmain -I src/libfetchers
|
|
|
|
libcmd_LDFLAGS += $(LOWDOWN_LIBS) -pthread
|
|
|
|
libcmd_LIBS = libstore libutil libexpr libmain libfetchers
|
|
|
|
$(eval $(call install-file-in, $(d)/nix-cmd.pc, $(libdir)/pkgconfig, 0644))
|