makefile
来自「内核linux2.4.20,可跟rtlinux3.2打补丁 组成实时linux系」· 代码 · 共 28 行
TXT
28 行
## Makefile for the netfilter modules on top of IPv6.## 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 definition is now in the main makefile...O_TARGET := netfilter.oexport-objs := ip6_tables.o# Link order matters here.obj-$(CONFIG_IP6_NF_IPTABLES) += ip6_tables.oobj-$(CONFIG_IP6_NF_MATCH_LIMIT) += ip6t_limit.oobj-$(CONFIG_IP6_NF_MATCH_MARK) += ip6t_mark.oobj-$(CONFIG_IP6_NF_MATCH_MAC) += ip6t_mac.oobj-$(CONFIG_IP6_NF_MATCH_MULTIPORT) += ip6t_multiport.oobj-$(CONFIG_IP6_NF_MATCH_OWNER) += ip6t_owner.oobj-$(CONFIG_IP6_NF_FILTER) += ip6table_filter.oobj-$(CONFIG_IP6_NF_MANGLE) += ip6table_mangle.oobj-$(CONFIG_IP6_NF_TARGET_MARK) += ip6t_MARK.oobj-$(CONFIG_IP6_NF_QUEUE) += ip6_queue.oobj-$(CONFIG_IP6_NF_TARGET_LOG) += ip6t_LOG.oinclude $(TOPDIR)/Rules.make
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?