mirror of
https://github.com/AuxXxilium/synology-wireguard.git
synced 2024-11-23 23:11:06 +07:00
f0b83daf9d
This fixes problems with memneq patches for DSM 7.
74 lines
2.6 KiB
Makefile
74 lines
2.6 KiB
Makefile
APPLY_MEMNEQ_PATCH ?= 0
|
|
|
|
LIBMNL_TAR := libmnl-$(LIBMNL_VERSION).tar.bz2
|
|
LIBMNL_DIR := libmnl-$(LIBMNL_VERSION)
|
|
|
|
WIREGUARD_TAR := wireguard-linux-compat-$(WIREGUARD_VERSION).tar.xz
|
|
WIREGUARD_DIR := wireguard-linux-compat-$(WIREGUARD_VERSION)
|
|
|
|
WIREGUARD_TOOLS_TAR := wireguard-tools-$(WIREGUARD_TOOLS_VERSION).tar.xz
|
|
WIREGUARD_TOOLS_DIR := wireguard-tools-$(WIREGUARD_TOOLS_VERSION)
|
|
|
|
WG_TARGET := $(WIREGUARD_TOOLS_DIR)/src/wg
|
|
WG_QUICK_TARGET := $(WIREGUARD_TOOLS_DIR)/wg-quick
|
|
WG_MODULE_TARGET := $(WIREGUARD_DIR)/src/wireguard.ko
|
|
|
|
GCC := $(CROSS_COMPILE)gcc
|
|
TARGET_TRIPLE := $(shell echo $(CROSS_COMPILE)|cut -f4 -d/ -)
|
|
|
|
ROOT_DIR := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
|
|
|
|
all: $(WG_TARGET) $(WG_QUICK_TARGET) $(WG_MODULE_TARGET)
|
|
|
|
# Download libmnl source tarball
|
|
$(LIBMNL_TAR):
|
|
wget https://netfilter.org/projects/libmnl/files/$(LIBMNL_TAR)
|
|
|
|
# Prepare libmnl for building
|
|
$(LIBMNL_DIR)/Makefile: $(LIBMNL_TAR)
|
|
tar -xf $(LIBMNL_TAR)
|
|
(cd $(LIBMNL_DIR) && ./configure --host=$(shell gcc -dumpmachine) --enable-static --target=$(TARGET_TRIPLE) CC=$(GCC))
|
|
|
|
# Compile libmnl static lib
|
|
$(LIBMNL_DIR)/src/.libs/libmnl.a: $(LIBMNL_DIR)/Makefile
|
|
make -C $(LIBMNL_DIR)
|
|
|
|
# Download WireGuard source tarball
|
|
$(WIREGUARD_TAR):
|
|
wget https://git.zx2c4.com/wireguard-linux-compat/snapshot/$(WIREGUARD_TAR)
|
|
|
|
$(WIREGUARD_TOOLS_TAR):
|
|
wget https://git.zx2c4.com/wireguard-tools/snapshot/$(WIREGUARD_TOOLS_TAR)
|
|
|
|
# Unpack WireGuard source tarball and patch the compatibility layer to always
|
|
# use memneq implementation if required.
|
|
$(WIREGUARD_DIR)/src/Makefile: $(WIREGUARD_TAR)
|
|
tar -xf $(WIREGUARD_TAR)
|
|
ifeq ($(APPLY_MEMNEQ_PATCH), 1)
|
|
patch $(WIREGUARD_DIR)/src/compat/Kbuild.include $(ROOT_DIR)/memneq.patch
|
|
endif
|
|
|
|
$(WIREGUARD_TOOLS_DIR)/src/Makefile: $(WIREGUARD_TOOLS_TAR)
|
|
tar -xf $(WIREGUARD_TOOLS_TAR)
|
|
|
|
# Build the wg command line tool
|
|
$(WG_TARGET): $(LIBMNL_DIR)/src/.libs/libmnl.a $(WIREGUARD_TOOLS_DIR)/src/Makefile
|
|
CFLAGS=-I$(ROOT_DIR)/$(LIBMNL_DIR)/include LDFLAGS=-L$(ROOT_DIR)/$(LIBMNL_DIR)/src/.libs make -C $(WIREGUARD_TOOLS_DIR)/src CC=$(GCC)
|
|
|
|
# Choose the correct wg-quick implementation
|
|
$(WG_QUICK_TARGET): $(WIREGUARD_TOOLS_DIR)/src/Makefile
|
|
cp $(WIREGUARD_TOOLS_DIR)/src/wg-quick/linux.bash $(WG_QUICK_TARGET)
|
|
|
|
# Build wireguard.ko kernel module
|
|
$(WG_MODULE_TARGET): $(WIREGUARD_DIR)/src/Makefile
|
|
make -C $(WIREGUARD_DIR)/src module ARCH=$(ARCH) KERNELDIR=$(KSRC)
|
|
|
|
install: all
|
|
mkdir -p $(DESTDIR)/wireguard/
|
|
install $(WG_TARGET) $(DESTDIR)/wireguard/
|
|
install $(WG_QUICK_TARGET) $(DESTDIR)/wireguard/
|
|
install $(WG_MODULE_TARGET) $(DESTDIR)/wireguard/
|
|
|
|
clean:
|
|
rm -rf $(LIBMNL_TAR) $(LIBMNL_DIR) $(WIREGUARD_TAR) $(WIREGUARD_DIR) $(WIREGUARD_TOOLS_TAR) $(WIREGUARD_TOOLS_DIR)
|