mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-12-04 11:26:16 +02:00
423484ad26
We don't want this with MinGW.
15 lines
426 B
Makefile
15 lines
426 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 = $(EDITLINE_LIBS) $(LOWDOWN_LIBS) $(THREAD_LDFLAGS)
|
|
|
|
libcmd_LIBS = libstore libutil libexpr libmain libfetchers
|
|
|
|
$(eval $(call install-file-in, $(buildprefix)$(d)/nix-cmd.pc, $(libdir)/pkgconfig, 0644))
|