github.com/cloudfoundry-attic/garden-linux@v0.333.2-candidate/Makefile (about) 1 default: all 2 3 all: 4 go build -o linux_backend/bin/wshd github.com/cloudfoundry-incubator/garden-linux/containerizer/wshd 5 go build -o linux_backend/skeleton/lib/pivotter github.com/cloudfoundry-incubator/garden-linux/containerizer/system/pivotter 6 go build -o linux_backend/bin/iodaemon github.com/cloudfoundry-incubator/garden-linux/iodaemon/cmd/iodaemon 7 go build -o linux_backend/bin/wsh github.com/cloudfoundry-incubator/garden-linux/container_daemon/wsh 8 CGO_ENABLED=0 go build -a -installsuffix static -o linux_backend/skeleton/bin/initc github.com/cloudfoundry-incubator/garden-linux/containerizer/initc 9 CGO_ENABLED=0 go build -a -installsuffix static -o linux_backend/skeleton/lib/hook github.com/cloudfoundry-incubator/garden-linux/hook/hook 10 go build -o ${PWD}/out/garden-linux -tags daemon github.com/cloudfoundry-incubator/garden-linux 11 cd linux_backend/src && make clean all 12 cp linux_backend/src/oom/oom linux_backend/skeleton/bin 13 cp linux_backend/src/nstar/nstar linux_backend/bin 14 cd linux_backend/src && make clean 15 16 .PHONY: default