diff options
author | Dave Wallace <dwallacelf@gmail.com> | 2024-05-15 18:16:40 -0400 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2024-11-20 16:36:54 +0000 |
commit | 79c8f99ac928ab6108b3dd854b2ad389c4809ebb (patch) | |
tree | 2d998195b5b970285eefd1958db2da799d475757 /build/external/Makefile | |
parent | 258b82975b120b3deb34483254f1d40dca5bb79d (diff) |
build: add vpp-opt-deps package
- Build an optional vpp package for optional
dynamically linked dependencies for vpp plugins.
Initial package contents include openssl 3.3.2.
- Refactor $WS_ROOT/build makefile structure
- Remove vpp-ext-deps debian control replacement
of vpp-dpdk-dev package
Type: make
Change-Id: I1af0eff4a0c009c9d9061362f79e2013d8bf1a93
Signed-off-by: Dave Wallace <dwallacelf@gmail.com>
Diffstat (limited to 'build/external/Makefile')
-rw-r--r-- | build/external/Makefile | 37 |
1 files changed, 2 insertions, 35 deletions
diff --git a/build/external/Makefile b/build/external/Makefile index b4a099c57e1..d70ba7c3f6a 100644 --- a/build/external/Makefile +++ b/build/external/Makefile @@ -11,42 +11,9 @@ # See the License for the specific language governing permissions and # limitations under the License. -# Scripts require non-POSIX parts of bash -SHELL := $(shell which bash) - -DL_CACHE_DIR = $(HOME)/Downloads -MAKE_ARGS ?= -j -BUILD_DIR ?= $(CURDIR)/_build -INSTALL_DIR ?= $(CURDIR)/_install -PKG_VERSION ?= $(shell git describe --abbrev=0 --match 'v[0-9]*' | cut -d- -f1 | cut -dv -f2 | cut -d. -f1,2) -PKG_SUFFIX ?= $(shell git log --oneline v$(PKG_VERSION)-rc0.. . | wc -l) -SOURCE_DATE_EPOCH ?= $(shell git log -1 --pretty=%ct .) -ifeq ($(shell uname), FreeBSD) -JOBS := $(shell nproc) -else -JOBS := $(if $(shell [ -f /proc/cpuinfo ] && head /proc/cpuinfo),\ - $(shell grep -c ^processor /proc/cpuinfo), 2) -endif # FreeBSD - -B := $(BUILD_DIR) -I := $(INSTALL_DIR) -ifeq ($(WORKSPACE),) -L := $(B) -else -L := $(WORKSPACE)/archives/vpp-ext-deps -$(shell rm -rf $(L) && mkdir -p $(L)) -endif - -ifneq ($(shell which cmake3),) -CMAKE?=cmake3 -else -CMAKE?=cmake -endif - -ARCH_X86_64=$(filter x86_64,$(shell uname -m)) -AARCH64=$(filter aarch64,$(shell uname -m)) +include ../build_common.mk +include ../packages_common.mk -include packages.mk include packages/ipsec-mb.mk include packages/quicly.mk ifneq ($(shell uname), FreeBSD) |