mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-01-25 15:53:37 +00:00
13 lines
368 B
Makefile
13 lines
368 B
Makefile
C_COMPILE=mobylinux/c-compile:ac075fed7c87e4af30d8490ae0504166cceb0df3@sha256:0e82d441ce112d638f904a08199c76b022c065a2dbf8908bb366755267d4417f
|
|
|
|
default: usr/bin/nc-vsock
|
|
|
|
DEPS=$(wildcard *.c *.h)
|
|
|
|
usr/bin/nc-vsock: $(DEPS)
|
|
mkdir -p $(dir $@)
|
|
tar cf - $(DEPS) | docker run --rm --net=none --log-driver=none -i $(C_COMPILE) -o $@ -luuid | tar xf -
|
|
|
|
clean:
|
|
rm -rf usr
|