David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 1 | # SPDX-License-Identifier: GPL-2.0-only |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2 | # |
| 3 | # Makefile for the Lan Media 21140 based WAN cards |
| 4 | # Specifically the 1000,1200,5200,5245 |
| 5 | # |
| 6 | |
| 7 | obj-$(CONFIG_LANMEDIA) += lmc.o |
| 8 | |
| 9 | lmc-objs := lmc_debug.o lmc_media.o lmc_main.o lmc_proto.o |
| 10 | |
| 11 | # Like above except every packet gets echoed to KERN_DEBUG |
| 12 | # in hex |
| 13 | # |
| 14 | # DBDEF = \ |
| 15 | # -DDEBUG \ |
| 16 | # -DLMC_PACKET_LOG |
| 17 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 18 | ccflags-y := $(DBGDEF) |