mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 00:36:20 +02:00
15 lines
307 B
Makefile
15 lines
307 B
Makefile
programs += nix-daemon
|
|
|
|
nix-daemon_DIR := $(d)
|
|
|
|
nix-daemon_SOURCES := $(d)/nix-daemon.cc
|
|
|
|
nix-daemon_LIBS = libmain libstore libutil libformat
|
|
|
|
nix-daemon_LDFLAGS = -pthread
|
|
|
|
ifeq ($(OS), SunOS)
|
|
nix-daemon_LDFLAGS += -lsocket
|
|
endif
|
|
|
|
$(eval $(call install-symlink, nix-daemon, $(bindir)/nix-worker))
|