mirror of
https://github.com/daeuniverse/dae.git
synced 2024-12-22 20:44:41 +07:00
52 lines
1.4 KiB
Makefile
52 lines
1.4 KiB
Makefile
#
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
# Copyright (c) 2022-2023, v2rayA Organization <team@v2raya.org>
|
|
#
|
|
|
|
# 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
|
|
STRIP ?= llvm-strip
|
|
CFLAGS := -O2 -Wall -Werror $(CFLAGS)
|
|
TARGET ?= bpfel,bpfeb
|
|
OUTPUT ?= dae
|
|
|
|
# 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/.),)
|
|
VERSION ?= unstable-0.nogit
|
|
else
|
|
VERSION ?= unstable-$(date).r$(count).$(commit)
|
|
endif
|
|
|
|
.PHONY: clean-ebpf bpf_objects ebpf dae
|
|
|
|
dae: ebpf
|
|
go build -o $(OUTPUT) -trimpath -ldflags "-s -w -X github.com/v2rayA/dae/cmd.Version=$(VERSION)" .
|
|
|
|
clean-ebpf:
|
|
@rm -f control/bpf_bpf*.go && \
|
|
rm -f control/bpf_bpf*.o
|
|
|
|
bpf_objects:
|
|
@unset GOOS && \
|
|
unset GOARCH && \
|
|
unset GOARM && \
|
|
if [ ! -f control/bpf_objects_wan_lan.go ]; then \
|
|
go run github.com/v2rayA/dae/cmd/internal/generate_bpf_objects/dummy -o control/bpf_objects_wan_lan.go; \
|
|
fi
|
|
|
|
# $BPF_CLANG is used in go:generate invocations.
|
|
ebpf: export BPF_CLANG := $(CLANG)
|
|
ebpf: export BPF_STRIP := $(STRIP)
|
|
ebpf: export BPF_CFLAGS := $(CFLAGS)
|
|
ebpf: export BPF_TARGET := $(TARGET)
|
|
ebpf: clean-ebpf bpf_objects
|
|
@unset GOOS && \
|
|
unset GOARCH && \
|
|
unset GOARM && \
|
|
go generate ./control/control.go
|