Files
runc/Makefile
T
Michael Crosby 75ab73b8ab Remove all for make install
This is not how Makefiles work and install should not build everything
again.

Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
2015-06-29 13:33:15 -07:00

11 lines
127 B
Makefile

all:
go get github.com/tools/godep
godep go build -o runc .
install:
cp runc /usr/local/bin/runc
rm runc
clean:
rm runc