diff options
author | Ralf Baechle <ralf@linux-mips.org> | 1999-06-13 16:29:25 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 1999-06-13 16:29:25 +0000 |
commit | db7d4daea91e105e3859cf461d7e53b9b77454b2 (patch) | |
tree | 9bb65b95440af09e8aca63abe56970dd3360cc57 /net/ipx/Makefile | |
parent | 9c1c01ead627bdda9211c9abd5b758d6c687d8ac (diff) |
Merge with Linux 2.2.8.
Diffstat (limited to 'net/ipx/Makefile')
-rw-r--r-- | net/ipx/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/net/ipx/Makefile b/net/ipx/Makefile index 39639c6dc..fb55995ae 100644 --- a/net/ipx/Makefile +++ b/net/ipx/Makefile @@ -10,8 +10,12 @@ # We only get in/to here if CONFIG_IPX = 'y' or 'm' O_TARGET := ipx.o -M_OBJS := $(O_TARGET) -OX_OBJS += af_ipx.o +M_OBJS := +OX_OBJS := af_ipx.o + +ifeq ($(CONFIG_IPX),m) + M_OBJS += $(O_TARGET) +endif ifeq ($(CONFIG_SYSCTL),y) O_OBJS += sysctl_net_ipx.o |