Files
linuxkit/alpine/packages/tap-vsockd/Makefile
2016-09-12 16:02:07 +01:00

10 lines
217 B
Makefile

DEPS=Dockerfile $(wildcard *.c *.h)
sbin/tap-vsockd: $(DEPS)
mkdir -p sbin
tar cf - $(DEPS) | docker build -t tap-vsockd:build -
docker run --rm --net=none tap-vsockd:build | tar xf - -C sbin
clean:
rm -rf sbin