blob: 584a163974e1702050abc1dfbf4acea713ae2e5b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
#
# Makefile for the 865x High Performance
#
# Note! Dependencies are done automagically by 'make dep', which also
# removes any old dependencies. DON'T put your own dependencies here
# unless it's something special (ie not a .c file).
#
# Note 2! The CFLAGS definitions are now in the main makefile...
# Note 3! Pay attention to the important comments line(21-25 and 42-46)!!!!!
#obj-y := mmap.o
DIR_RTLASIC = $(TOPDIR)/drivers/net/rtl819x/
EXTRA_CFLAGS += -DCONFIG_RTL865X_MODULE_INTERNAL
#obj-y := rtl_glue.o
#Add mips16 Support
ifdef CONFIG_RTL865X_KERNEL_MIPS16_LAYERDRIVER
#CFLAGS_rtl865xc_swNic.o = -mips16
#CFLAGS_rtl_nic.o = -mips16
#CFLAGS_romeper.o = -mips16
endif
#
# The following configuration is used for 865xC model code only.
# In fact, we will port more and more driver files from 865xB to 865xC.
#
obj-y += rtl865xc_swNic.o
obj-y += rtl_nic.o
obj-$(CONFIG_RTL_PROC_DEBUG) += rtl865x_proc_debug.o
obj-$(CONFIG_RTL865X_ROMEPERF) += romeperf.o
#===>Attention: the following line define subdir with type ":=",not "+=", so to be
# sure that the other addition to subdir should not be placed before this line,or
# the addition would be layed over!!
#
obj-y += rtl865x/built-in.o
subdir-y += rtl865x
EXTRA_CFLAGS += -DRTL865X_OVER_KERNEL -DRTL865X_OVER_LINUX -D__KERNEL__ -Wno-implicit -Werror
#EXTRA_CFLAGS += -DCONFIG_RTL865X_IGMP_SNOOPING
ifeq ($(CONFIG_MESH_ENABLE),y)
EXTRA_CFLAGS += -DCONFIG_RTK_MESH #-DMESH_USE_METRICOP
ifeq ($(CONFIG_11S_TEST_MODE),y)
EXTRA_CFLAGS += -D_11s_TEST_MODE_
endif
endif
#######################################################################################################_CFLAGS
#
# FAST EXTERNAL DEVICES related files
#
# Fast path for external device process
#
########################################################################################################
EXTRA_CFLAGS += -I$(TOPDIR)/include
EXTRA_CFLAGS += -I$(TOPDIR)/arch/rlx/bsp
EXTRA_CFLAGS += -I$(DIR_RTLASIC)
EXTRA_CFLAGS += -I$(DIR_BOARD)
EXTRA_CFLAGS += -D__KERNEL__
EXTRA_CFLAGS += -DEXPORT_SYMTAB
ifeq ($(CONFIG_RTL865X_MODULE_ROMEDRV),y)
EXTRA_CFLAGS += -G 0
EXTRA_CFLAGS += -DMODULE
EXTRA_CFLAGS += -mlong-calls
endif #$(CONFIG_RTL865X_MODULE_ROMEDRV)!=y
EXTRA_AFLAGS += $(EXTRA_CFLAGS)
|