Files
linuxkit/alpine/packages/Makefile
Rolf Neugebauer bcf2cd851d llmnrd: Add a LLMNR Daemon
LLMNR is the Windows equivalent of mDNS.

Import the LLMNR daemon from https://github.com/tklauser/llmnrd
It needed some small modification to compile cleanly on Moby

LLMNRD is only started when running inside a Hyper-V VM

Signed-off-by: Rolf Neugebauer <rolf.neugebauer@docker.com>
2016-04-15 14:51:10 +01:00

31 lines
775 B
Makefile

all:
$(MAKE) -C proxy OS=linux
$(MAKE) -C transfused OS=linux
$(MAKE) -C mdnstool OS=linux
$(MAKE) -C hupper OS=linux
$(MAKE) -C hvtools OS=linux
$(MAKE) -C docker OS=Linux
$(MAKE) -C nc-vsock OS=linux
$(MAKE) -C vsudd OS=linux
$(MAKE) -C llmnrd OS=linux
arm:
$(MAKE) -C proxy OS=linux ARCH=arm
$(MAKE) -C transfused OS=linux ARCH=arm
$(MAKE) -C mdnstool OS=linux ARCH=arm
$(MAKE) -C hupper OS=linux ARCH=arm
$(MAKE) -C docker OS=Linux ARCH=arm
$(MAKE) -C nc-vsock OS=linux ARCH=arm
$(MAKE) -C vsudd OS=linux ARCH=arm
clean:
$(MAKE) -C proxy clean
$(MAKE) -C transfused clean
$(MAKE) -C mdnstool clean
$(MAKE) -C docker clean
$(MAKE) -C hupper clean
$(MAKE) -C hvtools clean
$(MAKE) -C nc-vsock clean
$(MAKE) -C vsudd clean
$(MAKE) -C llmnrd clean