diff options
author | Michael I. Bushnell <mib@gnu.org> | 1995-08-08 18:01:58 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1995-08-08 18:01:58 +0000 |
commit | 5f8882854e1007be61d25ea9c2bbf53759e01f4d (patch) | |
tree | 97ad7fc196b215e26a7dd44d0d476d917af04004 /pfinet | |
parent | e0b9fc9044d075ccacb202971cd0a4451458d1c3 (diff) |
Formerly Makefile.~5~
Diffstat (limited to 'pfinet')
-rw-r--r-- | pfinet/Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/pfinet/Makefile b/pfinet/Makefile index 63d56143..8c078a6b 100644 --- a/pfinet/Makefile +++ b/pfinet/Makefile @@ -21,10 +21,12 @@ dir := pfinet makemode := server LINUXSRCS= af_inet.c arp.c datagram.c dev.c dev_mcast.c devinet.c eth.c \ - icmp.c igmp.c ip.c ip_fw.c ipx.c p8022.c p8023.c packet.c pe2.c \ + icmp.c igmp.c ip.c ip_fw.c ipx.c p8022.c p8023.c pe2.c \ proc.c protocol.c psnap.c rarp.c raw.c route.c skbuff.c sock.c \ tcp.c timer.c udp.c utils.c -OBJS= $(subst .c,.o,$(LINUXSRCS)) +UNUSEDSRC = packet.c +SRCS = sched.c timer.c +OBJS= $(subst .c,.o,$(LINUXSRCS) $(SRCS)) vpath %.c linux-inet @@ -32,6 +34,8 @@ target = pfinet include ../Makeconf -CPPFLAGS += -I. -D__KERNEL__ -D_HURD_ +CPPFLAGS += -I. -imacros config.h + + |