mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-17 23:46:48 +07:00
085c4c7dd2
The header search path -I. in kernel Makefiles is very suspicious; it allows the compiler to search for headers in the top of $(srctree), where obviously no header file exists. I was able to build without this header search path. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Signed-off-by: David S. Miller <davem@davemloft.net>
18 lines
325 B
Makefile
18 lines
325 B
Makefile
#
|
|
# Makefile for the Lan Media 21140 based WAN cards
|
|
# Specifically the 1000,1200,5200,5245
|
|
#
|
|
|
|
obj-$(CONFIG_LANMEDIA) += lmc.o
|
|
|
|
lmc-objs := lmc_debug.o lmc_media.o lmc_main.o lmc_proto.o
|
|
|
|
# Like above except every packet gets echoed to KERN_DEBUG
|
|
# in hex
|
|
#
|
|
# DBDEF = \
|
|
# -DDEBUG \
|
|
# -DLMC_PACKET_LOG
|
|
|
|
ccflags-y := $(DBGDEF)
|