dae/Makefile

46 lines
1.3 KiB
Makefile
Raw Normal View History

2023-01-23 18:54:21 +07:00
#
# SPDX-License-Identifier: AGPL-3.0-only
# Copyright (c) 2022-2023, v2rayA Organization <team@v2raya.org>
2023-01-23 18:54:21 +07:00
#
# The development version of clang is distributed as the 'clang' binary,
# while stable/released versions have a version number attached.
# Pin the default clang to a stable version.
CLANG ?= clang
2023-01-23 18:54:21 +07:00
STRIP ?= llvm-strip
2023-01-27 01:10:27 +07:00
CFLAGS := -O2 -Wall -Werror $(CFLAGS)
2023-01-31 21:02:18 +07:00
TARGET ?= bpfel,bpfeb
OUTPUT ?= dae
MAX_MATCH_SET_LEN ?= 64
CFLAGS := -DMAX_MATCH_SET_LEN=$(MAX_MATCH_SET_LEN) $(CFLAGS)
2023-01-27 01:10:27 +07:00
# Get version from .git.
date=$(shell git log -1 --format="%cd" --date=short | sed s/-//g)
count=$(shell git rev-list --count HEAD)
commit=$(shell git rev-parse --short HEAD)
ifeq ($(wildcard .git/.),)
2023-01-28 12:52:31 +07:00
VERSION ?= unstable-0.nogit
2023-01-27 01:10:27 +07:00
else
2023-01-28 12:52:31 +07:00
VERSION ?= unstable-$(date).r$(count).$(commit)
2023-01-27 01:10:27 +07:00
endif
2023-01-23 18:54:21 +07:00
.PHONY: clean-ebpf ebpf dae
2023-01-23 19:01:24 +07:00
dae: ebpf
go build -o $(OUTPUT) -trimpath -ldflags "-s -w -X github.com/v2rayA/dae/cmd.Version=$(VERSION) -X github.com/v2rayA/dae/common/consts.MaxMatchSetLen_=$(MAX_MATCH_SET_LEN)" .
2023-01-23 18:54:21 +07:00
2023-01-31 17:33:47 +07:00
clean-ebpf:
2023-02-18 17:31:40 +07:00
@rm -f control/bpf_bpf*.go && \
2023-02-07 22:49:30 +07:00
rm -f control/bpf_bpf*.o
2023-01-31 17:33:47 +07:00
2023-01-23 18:54:21 +07:00
# $BPF_CLANG is used in go:generate invocations.
2023-01-23 19:01:24 +07:00
ebpf: export BPF_CLANG := $(CLANG)
ebpf: export BPF_STRIP := $(STRIP)
ebpf: export BPF_CFLAGS := $(CFLAGS)
2023-01-31 19:25:55 +07:00
ebpf: export BPF_TARGET := $(TARGET)
ebpf: clean-ebpf
2023-02-18 17:31:40 +07:00
@unset GOOS && \
2023-01-28 17:32:42 +07:00
unset GOARCH && \
unset GOARM && \
2023-02-07 22:49:30 +07:00
go generate ./control/control.go