source: rtems/cpukit/libnetworking/Makefile.am @ b3f8c9e1

4.104.115
Last change on this file since b3f8c9e1 was 1fbd0baf, checked in by Joel Sherrill <joel.sherrill@…>, on 07/02/08 at 13:40:19

2008-07-02 Joel Sherrill <joel.sherrill@…>

  • libnetworking/Makefile.am, libnetworking/libc/gethostnamadr.c, libnetworking/libc/getservbyname.c, libnetworking/libc/getservbyport.c: Add initial versions of getservbyport_r(), gethostbyaddr_r(), and getservbyport_r(). At this point they are just simple weappers for the version without the _r in the name.
  • Property mode set to 100644
File size: 6.9 KB
Line 
1##
2## $Id$
3##
4
5include $(top_srcdir)/automake/multilib.am
6include $(top_srcdir)/automake/compile.am
7
8AM_CPPFLAGS += -I$(srcdir)
9
10EXTRA_DIST = README
11
12# poll is not supported
13UNUSED_FILES = poll.h
14# Original FreeBSD file
15UNUSED_FILES += sys/poll.h
16
17
18if LIBNETWORKING
19# Add -DFORWARD_PROTOCOL to enable UDP forwarding -- requires missing net/pf.h
20libnetworking_CPPFLAGS = -D_COMPILING_BSD_KERNEL_ -DKERNEL -DINET -DNFS \
21    -DDIAGNOSTIC -DBOOTP_COMPAT -D_KERNEL -D__BSD_VISIBLE
22
23noinst_LIBRARIES = libnetworking.a
24libnetworking_a_CPPFLAGS = $(AM_CPPFLAGS) $(libnetworking_CPPFLAGS)
25
26## poll.h is not in the list because RTEMS does not have poll()
27## and installing poll.h confuses autoconf.
28include_HEADERS = netdb.h
29include_HEADERS += resolv.h syslog.h
30
31libnetworking_a_SOURCES = opt_atalk.h opt_bdg.h opt_compat.h opt_inet6.h \
32    opt_inet.h opt_ipfw.h opt_ipx.h opt_mac.h opt_mrouting.h opt_netgraph.h \
33    opt_tcpdebug.h opt_ipsec.h loop.h
34libnetworking_a_SOURCES += opt_ppp.h
35libnetworking_a_SOURCES += bpfilter.h
36
37# arpa
38
39include_arpadir = $(includedir)/arpa
40
41include_arpa_HEADERS = arpa/ftp.h arpa/inet.h arpa/nameser.h \
42    arpa/nameser_compat.h
43
44## kern
45
46libnetworking_a_SOURCES += kern/kern_mib.c kern/kern_subr.c \
47    kern/kern_sysctl.c kern/uipc_domain.c kern/uipc_mbuf.c \
48    kern/uipc_socket.c kern/uipc_socket2.c
49
50## machine
51
52include_machinedir = $(includedir)/machine
53
54include_machine_HEADERS = machine/cpu.h machine/cpufunc.h \
55    machine/in_cksum.h machine/vmparam.h
56
57libnetworking_a_SOURCES += machine/limits.h
58
59## net
60
61include_netdir = $(includedir)/net
62
63include_net_HEADERS = net/bpf.h net/ethernet.h net/if.h net/if_arp.h \
64    net/if_dl.h net/if_llc.h net/if_ppp.h net/if_types.h net/if_var.h \
65    net/netisr.h net/ppp_defs.h net/radix.h net/raw_cb.h \
66    net/route.h net/if_pppvar.h net/slcompress.h
67include_net_HEADERS += net/if_media.h
68include_net_HEADERS += net/ppp_comp.h
69
70libnetworking_a_SOURCES += net/if.c net/if_ethersubr.c net/if_loop.c \
71    net/radix.c net/route.c net/rtsock.c net/raw_cb.c net/raw_usrreq.c \
72    net/if_ppp.c net/ppp_tty.c net/slcompress.c
73
74## netinet
75
76include_netinetdir = $(includedir)/netinet
77
78include_netinet_HEADERS = netinet/icmp_var.h netinet/if_ether.h \
79    netinet/igmp.h netinet/igmp_var.h netinet/in.h netinet/in_pcb.h \
80    netinet/in_systm.h netinet/in_var.h netinet/ip.h netinet/ip_fw.h \
81    netinet/ip_icmp.h netinet/ip_mroute.h netinet/ip_var.h netinet/tcp.h \
82    netinet/tcp_debug.h netinet/tcp_fsm.h netinet/tcp_seq.h \
83    netinet/tcp_timer.h netinet/tcp_var.h netinet/tcpip.h netinet/udp.h \
84    netinet/udp_var.h
85
86libnetworking_a_SOURCES += netinet/if_ether.c netinet/igmp.c netinet/in.c \
87    netinet/in_cksum.c netinet/in_pcb.c netinet/in_proto.c netinet/in_rmx.c \
88    netinet/ip_divert.c netinet/ip_fw.c netinet/ip_icmp.c netinet/ip_input.c \
89    netinet/ip_mroute.c netinet/ip_output.c netinet/raw_ip.c \
90    netinet/tcp_debug.c netinet/tcp_input.c netinet/tcp_output.c \
91    netinet/tcp_subr.c netinet/tcp_timer.c netinet/tcp_usrreq.c \
92    netinet/udp_usrreq.c netinet/in_cksum_arm.h netinet/in_cksum_i386.h \
93    netinet/in_cksum_m68k.h netinet/in_cksum_powerpc.h
94
95## nfs
96
97include_nfsdir = $(includedir)/nfs
98
99include_nfs_HEADERS = nfs/nfsproto.h
100include_nfs_HEADERS += nfs/rpcv2.h
101include_nfs_HEADERS += nfs/xdr_subs.h
102
103libnetworking_a_SOURCES += nfs/bootp_subr.c
104
105## nfsclient
106include_nfsclientdir = $(includedir)/nfsclient
107
108include_nfsclient_HEADERS = nfsclient/nfsargs.h nfsclient/nfsdiskless.h
109
110## rtems
111
112include_rtemsdir = $(includedir)/rtems
113
114include_rtems_HEADERS = rtems/rtems_bsdnet.h rtems/rtems_bsdnet_internal.h \
115    rtems/dhcp.h rtems/rtems_dhcp_failsafe.h rtems/tftp.h rtems/ftpfs.h \
116    rtems/mkrootfs.h
117include_rtems_HEADERS += rtems/rtems_mii_ioctl.h
118
119libnetworking_a_SOURCES += rtems/sghostname.c rtems/issetugid.c \
120    rtems/rtems_glue.c rtems/rtems_malloc_mbuf.c rtems/rtems_syscall.c \
121    rtems/rtems_bootp.c rtems/rtems_dhcp.c rtems/rtems_dhcp_failsafe.c \
122    rtems/rtems_showmbuf.c rtems/rtems_showroute.c rtems/rtems_showifstat.c \
123    rtems/rtems_showipstat.c rtems/rtems_showicmpstat.c \
124    rtems/rtems_showtcpstat.c rtems/rtems_showudpstat.c rtems/rtems_select.c \
125    rtems/mkrootfs.c rtems/rtems_bsdnet_malloc_starvation.c \
126    rtems/rtems_mii_ioctl.c rtems/rtems_mii_ioctl_kern.c \
127    rtems/rtems_socketpair.c
128
129## sys
130
131include_sysdir = $(includedir)/sys
132
133include_sys_HEADERS = sys/callout.h sys/conf.h sys/domain.h \
134    sys/kernel.h sys/libkern.h sys/linker_set.h sys/malloc.h sys/mbuf.h \
135    sys/mount.h sys/proc.h sys/protosw.h sys/reboot.h \
136    sys/resourcevar.h sys/select.h sys/signalvar.h sys/socket.h \
137    sys/socketvar.h sys/sysctl.h sys/syslog.h sys/systm.h sys/ttydefaults.h \
138    sys/ucred.h sys/uio.h sys/un.h
139
140# vm
141
142include_vmdir = $(includedir)/vm
143
144include_vm_HEADERS = vm/vm.h vm/vm_extern.h vm/vm_kern.h vm/vm_param.h
145
146# dev
147include_dev_miidir = $(includedir)/dev/mii
148include_dev_mii_HEADERS = dev/mii/mii.h
149
150## libc
151
152libc_CPPFLAGS = -DNOPOLL -DNOSELECT -D__BSD_VISIBLE -D_THREAD_SAFE
153
154noinst_LIBRARIES += libc.a
155libc_a_CPPFLAGS = $(AM_CPPFLAGS) $(libc_CPPFLAGS)
156
157include_HEADERS += ifaddrs.h
158
159libc_a_SOURCES = libc/addr2ascii.c libc/ascii2addr.c libc/base64.c \
160    libc/gethostbydns.c libc/gethostbyht.c libc/gethostbynis.c \
161    libc/gethostnamadr.c libc/getnetbydns.c libc/getnetbyht.c \
162    libc/getnetbynis.c libc/getnetnamadr.c libc/getproto.c \
163    libc/getprotoent.c libc/getprotoname.c libc/getservbyname.c \
164    libc/getservbyport.c libc/getservent.c libc/herror.c libc/inet_addr.c \
165    libc/inet_lnaof.c libc/inet_makeaddr.c libc/inet_netof.c \
166    libc/inet_network.c libc/inet_ntoa.c libc/inet_ntop.c libc/inet_pton.c \
167    libc/linkaddr.c libc/map_v4v6.c libc/nsap_addr.c libc/ns_name.c \
168    libc/ns_netint.c libc/ns_parse.c libc/ns_print.c libc/ns_ttl.c \
169    libc/res_comp.c libc/res_data.c libc/res_debug.c libc/res_init.c \
170    libc/res_mkquery.c libc/res_mkupdate.c libc/res_query.c libc/res_send.c \
171    libc/res_stubs.c libc/res_update.c libc/strsep.c libc/rcmd.c
172libc_a_SOURCES += libc/res_config.h
173libc_a_SOURCES += libc/send.c
174libc_a_SOURCES += libc/recv.c
175libc_a_SOURCES += libc/getifaddrs.c
176libc_a_SOURCES += libc/if_indextoname.c
177libc_a_SOURCES += libc/if_nameindex.c
178endif
179
180UNUSED_FILES += libc/ether_addr.c libc/gethostname.c libc/inet_neta.c \
181    libc/inet_net_ntop.c libc/inet_net_pton.c libc/ns_addr.c \
182    libc/ns_ntoa.c
183
184libc_mans = libc/addr2ascii.3 libc/byteorder.3 libc/ethers.3 \
185    libc/gethostbyname.3 libc/getnetent.3 libc/getprotoent.3 \
186    libc/getservent.3 libc/inet.3 libc/linkaddr.3 libc/ns.3 \
187    libc/rcmd.3 libc/resolver.3
188EXTRA_DIST += $(libc_mans)
189
190if LIBNETWORKING
191man_MANS = $(libc_MANS)
192
193## lib
194
195EXTRA_DIST += lib/README
196
197lib_CPPFLAGS = -DNOPOLL -DNOSELECT
198
199noinst_LIBRARIES += lib.a
200lib_a_CPPFLAGS = $(AM_CPPFLAGS) $(lib_CPPFLAGS) -D__BSD_VISIBLE
201
202lib_a_SOURCES = lib/getprotoby.c lib/rtems_bsdnet_ntp.c lib/ftpfs.c \
203    lib/syslog.c lib/tftpDriver.c
204endif
205
206EXTRA_DIST += $(UNUSED_FILES)
207
208include $(srcdir)/preinstall.am
209include $(top_srcdir)/automake/local.am
Note: See TracBrowser for help on using the repository browser.