diff options
author | Roland McGrath <roland@gnu.org> | 2002-05-29 08:34:41 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-05-29 08:34:41 +0000 |
commit | 2a348a0bd593ff396a0aa5f0fc0ec3a80a2cc1c9 (patch) | |
tree | 090dc48cd0b53f58ac20d7ca6a7d4cd96e226e07 /pfinet/Makefile | |
parent | 6f0783f05f1ec037bea1619306aff367b7f50d47 (diff) | |
download | hurd-2a348a0bd593ff396a0aa5f0fc0ec3a80a2cc1c9.tar.gz hurd-2a348a0bd593ff396a0aa5f0fc0ec3a80a2cc1c9.tar.bz2 hurd-2a348a0bd593ff396a0aa5f0fc0ec3a80a2cc1c9.zip |
2002-05-29 Roland McGrath <roland@frob.com>
* linux-src/arch/alpha/lib/csum_partial_copy.c: New file,
taken verbatim from Linux 2.2.14.
* Makefile (arch-lib-srcs): Add csum_partial_copy.c.
(LINUXSRCS): Match $(arch-lib-srcs) subset in arch/$(asm_syntax)/lib.
(OBJS): Use delayed evaluation.
* glue-include/asm/uaccess.h (__get_user): New macro.
(__m): New macro.
Diffstat (limited to 'pfinet/Makefile')
-rw-r--r-- | pfinet/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/pfinet/Makefile b/pfinet/Makefile index 35e30baa..959af6b3 100644 --- a/pfinet/Makefile +++ b/pfinet/Makefile @@ -29,7 +29,7 @@ core-srcs := datagram.c \ skbuff.c \ sock.c \ utils.c -arch-lib-srcs := checksum.c old-checksum.c +arch-lib-srcs := checksum.c old-checksum.c csum_partial_copy.c ethernet-srcs := eth.c ipv4-srcs := af_inet.c \ arp.c \ @@ -58,14 +58,17 @@ ipv4-srcs := af_inet.c \ timer.c \ udp.c \ utils.c -LINUXSRCS = $(core-srcs) $(ethernet-srcs) $(ipv4-srcs) $(arch-lib-srcs) +LINUXSRCS = $(core-srcs) $(ethernet-srcs) $(ipv4-srcs) \ + $(notdir $(wildcard $(addprefix \ + $(srcdir)/linux-src/arch/$(asm_syntax)/lib/,\ + $(arch-lib-srcs)))) SRCS = sched.c timer-emul.c socket.c main.c ethernet.c \ io-ops.c socket-ops.c misc.c time.c options.c loopback.c \ kmem_cache.c stubs.c dummy.c tunnel.c pfinet-ops.c \ iioctl-ops.c MIGSRCS = ioServer.c socketServer.c startup_notifyServer.c \ pfinetServer.c iioctlServer.c -OBJS := $(patsubst %.c,%.o,$(LINUXSRCS) $(SRCS) $(MIGSRCS)) +OBJS = $(patsubst %.c,%.o,$(LINUXSRCS) $(SRCS) $(MIGSRCS)) LCLHDRS = config.h mapped-time.h mutations.h pfinet.h LINUXHDRS = arp.h datalink.h eth.h icmp.h ip.h ipx.h ipxcall.h p8022.h \ p8022call.h protocol.h psnap.h psnapcall.h \ |