https://github.com/cilium/cilium
Revision 85f1db755845e8aa959d6ac742f107cd1a3fa977 authored by Thomas Graf on 23 May 2017, 20:18:24 UTC, committed by Thomas Graf on 24 May 2017, 21:16:46 UTC
Signed-off-by: Thomas Graf <thomas@cilium.io>
1 parent 7e4f642
Raw File
Tip revision: 85f1db755845e8aa959d6ac742f107cd1a3fa977 authored by Thomas Graf on 23 May 2017, 20:18:24 UTC
Documentation: Remove creation of ThirdPartyResource from guide
Tip revision: 85f1db7
Makefile.defs
PREFIX?=/usr
BINDIR?=$(PREFIX)/bin
RUNDIR?=/var/run
CONFDIR?=/etc

INSTALL = install

VERSION = $(shell cat $(dir $(lastword $(MAKEFILE_LIST)))/VERSION)
BUILD = $(VERSION) $(shell git show -s --format='format:%h %aD') $(shell go version)
GOBUILD = -ldflags '-X "github.com/cilium/cilium/pkg/version.Version=$(BUILD)"'

# Uncomment to enable race detection
#GOBUILD += -race
back to top