commit d1edce71135cc6d98c0a4b5729774542b676e769 Author: sophgo-forum-service <forum_service@sophgo.com> Date: Fri Mar 15 16:07:33 2024 +0800 [fix] recommend using ssh method to clone repo. [fix] fix sensor driver repo branch name.
19 lines
500 B
Makefile
19 lines
500 B
Makefile
ccflags-y := -O3
|
|
ccflags-y += -D'pr_fmt(fmt)=KBUILD_MODNAME ": " fmt'
|
|
ccflags-$(CONFIG_WIREGUARD_DEBUG) += -DDEBUG
|
|
wireguard-y := main.o
|
|
wireguard-y += noise.o
|
|
wireguard-y += device.o
|
|
wireguard-y += peer.o
|
|
wireguard-y += timers.o
|
|
wireguard-y += queueing.o
|
|
wireguard-y += send.o
|
|
wireguard-y += receive.o
|
|
wireguard-y += socket.o
|
|
wireguard-y += peerlookup.o
|
|
wireguard-y += allowedips.o
|
|
wireguard-y += ratelimiter.o
|
|
wireguard-y += cookie.o
|
|
wireguard-y += netlink.o
|
|
obj-$(CONFIG_WIREGUARD) := wireguard.o
|