-
Notifications
You must be signed in to change notification settings - Fork 44
/
Makefile
76 lines (69 loc) · 3.21 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# SPDX-License-Identifier: Apache-2.0
# Copyright 2019-present Open Networking Foundation
# Copyright(c) 2017 Intel Corporation
RECURSIVETARGETS := all clean
CPDEPS := libgtpv2c
DPDEPS := lib
DIRS := cp dp test
# Use 'make WHAT=cp' to compile cp only
WHAT ?= $(DIRS)
$(RECURSIVETARGETS): $(WHAT)
$(CPDEPS) $(DPDEPS):
$(MAKE) -C $@ $(MAKECMDGOALS)
cp: $(CPDEPS)
$(MAKE) -C $@ $(MAKECMDGOALS)
dp: $(DPDEPS)
$(MAKE) -C $@ $(MAKECMDGOALS)
test: $(CPDEPS) $(DPDEPS)
$(MAKE) -C $@ $(MAKECMDGOALS)
VERSION ?= $(shell cat ./VERSION)
DOCKER_TAG ?= ${VERSION}
DOCKER_DEBUG_TAG ?= ${DOCKER_TAG}-debug
DOCKER_REGISTRY ?=
DOCKER_REPOSITORY ?=
# Note that we set the target platform of Docker images to Haswell
# so that the images work on any platforms with Haswell CPUs or newer.
# To get the best performance optimization to your target platform,
# please build images on the target machine with RTE_MACHINE='native'.
DOCKER_BUILD_ARGS ?= --build-arg RTE_MACHINE='hsw'
## Docker labels. Only set ref and commit date if committed
DOCKER_LABEL_VCS_URL ?= $(shell git remote get-url $(shell git remote))
DOCKER_LABEL_VCS_REF ?= $(shell git diff-index --quiet HEAD -- && git rev-parse HEAD || echo "unknown")
DOCKER_LABEL_COMMIT_DATE ?= $(shell git diff-index --quiet HEAD -- && git show -s --format=%cd --date=iso-strict HEAD || echo "unknown" )
DOCKER_LABEL_BUILD_DATE ?= $(shell date -u "+%Y-%m-%dT%H:%M:%SZ")
DOCKER_TARGETS ?= cp dp
# https://docs.docker.com/engine/reference/commandline/build/#specifying-target-build-stage---target
docker-build:
for target in $(DOCKER_TARGETS); do \
docker build $(DOCKER_BUILD_ARGS) \
--target $$target \
--tag ${DOCKER_REGISTRY}${DOCKER_REPOSITORY}ngic-$$target:${DOCKER_TAG} \
--label "org.label-schema.schema-version=1.0" \
--label "org.label-schema.name=ngic-$$target" \
--label "org.label-schema.version=${VERSION}" \
--label "org.label-schema.vcs-url=${DOCKER_LABEL_VCS_URL}" \
--label "org.label-schema.vcs-ref=${DOCKER_LABEL_VCS_REF}" \
--label "org.label-schema.build-date=${DOCKER_LABEL_BUILD_DATE}" \
--label "org.opencord.vcs-commit-date=${DOCKER_LABEL_COMMIT_DATE}" \
.; \
docker build $(DOCKER_BUILD_ARGS) \
--target $$target \
--tag ${DOCKER_REGISTRY}${DOCKER_REPOSITORY}ngic-$$target:${DOCKER_DEBUG_TAG} \
--build-arg RUN_BASE="runtime-utils" \
--build-arg EXTRA_CFLAGS="-DUSE_AF_PACKET -UPERF_TEST -ggdb -O2" \
--label "org.label-schema.schema-version=1.0" \
--label "org.label-schema.name=ngic-$$target-af-packet" \
--label "org.label-schema.version=${VERSION}" \
--label "org.label-schema.vcs-url=${DOCKER_LABEL_VCS_URL}" \
--label "org.label-schema.vcs-ref=${DOCKER_LABEL_VCS_REF}" \
--label "org.label-schema.build-date=${DOCKER_LABEL_BUILD_DATE}" \
--label "org.opencord.vcs-commit-date=${DOCKER_LABEL_COMMIT_DATE}" \
.; \
done
docker-push:
for target in $(DOCKER_TARGETS); do \
docker push ${DOCKER_REGISTRY}${DOCKER_REPOSITORY}ngic-$$target:${DOCKER_TAG}; \
docker push ${DOCKER_REGISTRY}${DOCKER_REPOSITORY}ngic-$$target:${DOCKER_DEBUG_TAG}; \
done
.PHONY: $(RECURSIVETARGETS) $(WHAT) $(CPDEPS) $(DPDEPS) docker-build docker-push
.SILENT: docker-build docker-push