diff options
author | Roland McGrath <roland@gnu.org> | 2002-05-31 23:37:03 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-05-31 23:37:03 +0000 |
commit | 49c286d5ae7903c8a10f474117fe302812fa6e82 (patch) | |
tree | 08b629cf4faca53d88ea3eb9ab9dcc2afeb23bac /pfinet | |
parent | 7f44cfc84660e895cb933e241d6aa48fe483ed73 (diff) |
2002-05-31 Roland McGrath <roland@frob.com>
* Makefile (LINUXSRCS): Search for .S files as well as .c files
for arch-lib-srcs modules.
(OBJS): .S -> .o as well as .c -> .o
Diffstat (limited to 'pfinet')
-rw-r--r-- | pfinet/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pfinet/Makefile b/pfinet/Makefile index 2e1e40a1..b81d3073 100644 --- a/pfinet/Makefile +++ b/pfinet/Makefile @@ -68,7 +68,8 @@ SRCS = sched.c timer-emul.c socket.c main.c ethernet.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 %.S,%.o,$(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 \ |