Blame view

net/l2tp/Makefile 585 Bytes
b24413180   Greg Kroah-Hartman   License cleanup: ...
1
  # SPDX-License-Identifier: GPL-2.0
21b4aaa14   James Chapman   l2tp: Relocate pp...
2
3
4
  #
  # Makefile for the L2TP.
  #
fd558d186   James Chapman   l2tp: Split pppol...
5
  obj-$(CONFIG_L2TP) += l2tp_core.o
3f117d6f4   Tom Parkin   l2tp: add tracepo...
6
  CFLAGS_l2tp_core.o += -I$(src)
fd558d186   James Chapman   l2tp: Split pppol...
7
8
  # Build l2tp as modules if L2TP is M
  obj-$(subst y,$(CONFIG_L2TP),$(CONFIG_PPPOL2TP)) += l2tp_ppp.o
0d76751fa   James Chapman   l2tp: Add L2TPv3 ...
9
  obj-$(subst y,$(CONFIG_L2TP),$(CONFIG_L2TP_IP)) += l2tp_ip.o
309795f4b   James Chapman   l2tp: Add netlink...
10
  obj-$(subst y,$(CONFIG_L2TP),$(CONFIG_L2TP_V3)) += l2tp_netlink.o
d9e31d17c   James Chapman   l2tp: Add L2TP et...
11
  obj-$(subst y,$(CONFIG_L2TP),$(CONFIG_L2TP_ETH)) += l2tp_eth.o
0ad661404   James Chapman   l2tp: Add debugfs...
12
  obj-$(subst y,$(CONFIG_L2TP),$(CONFIG_L2TP_DEBUGFS)) += l2tp_debugfs.o
a32e0eec7   Chris Elston   l2tp: introduce L...
13
14
15
  ifneq ($(CONFIG_IPV6),)
  obj-$(subst y,$(CONFIG_L2TP),$(CONFIG_L2TP_IP)) += l2tp_ip6.o
  endif