kompose/Makefile
Tomas Kral 3dd7689364 Move binary target to binary-cross
use binary target only for building for current platform
2016-08-11 11:00:07 +02:00

25 lines
334 B
Makefile

.PHONY: all
KOMPOSE_ENVS := \
-e OS_PLATFORM_ARG \
-e OS_ARCH_ARG \
-e TESTDIRS \
-e TESTFLAGS \
-e TESTVERBOSE
BIND_DIR := bundles
default: binary
all:
CGO_ENABLED=0 ./script/make.sh
binary:
CGO_ENABLED=0 ./script/make.sh binary
binary-cross:
CGO_ENABLED=0 ./script/make.sh binary-cross
clean:
./script/make.sh clean