mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-04-10 20:56:30 +00:00
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>
31 lines
775 B
Makefile
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
|