Changeset e89694e in rtems
- Timestamp:
- 05/31/00 22:31:26 (23 years ago)
- Children:
- fd16f5b5
- Parents:
- 322c894
- Location:
- c/src/libnetworking
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/libnetworking/arpa/Makefile.am
r322c894 re89694e 5 5 AUTOMAKE_OPTIONS = foreign 1.4 6 6 7 EXTRA_DIST = ftp.h inet.h nameser.h nameser_compat.h telnet.h 7 H_FILES = ftp.h inet.h nameser.h nameser_compat.h telnet.h 8 9 noinst_HEADERS = $(H_FILES) 10 11 PREINSTALL_FILES += $(PROJECT_INCLUDE)/arpa $(H_FILES:%=$(PROJECT_INCLUDE)/arpa/%) 12 13 $(PROJECT_INCLUDE)/arpa: 14 @$(mkinstalldirs) $@ 15 16 $(PROJECT_INCLUDE)/arpa/%.h: %.h 17 $(INSTALL_DATA) $< $@ 18 19 all-local: $(PREINSTALL_FILES) 8 20 9 21 include $(top_srcdir)/../../../automake/local.am -
c/src/libnetworking/include/Makefile.am
r322c894 re89694e 11 11 ../opt_tcpdebug.h ../poll.h ../resolv.h ../syslog.h ../memory.h 12 12 13 SYS_H_FILES = ../sys/buf.h ../sys/callout.h ../sys/cdefs.h ../sys/conf.h \14 ../sys/domain.h ../sys/filio.h ../sys/ioccom.h ../sys/ioctl.h \15 ../sys/kernel.h ../sys/libkern.h ../sys/malloc.h ../sys/mbuf.h \16 ../sys/mount.h ../sys/param.h ../sys/proc.h ../sys/protosw.h \17 ../sys/queue.h ../sys/reboot.h ../sys/resourcevar.h ../sys/rtprio.h \18 ../sys/select.h ../sys/signalvar.h ../sys/socket.h ../sys/socketvar.h \19 ../sys/sockio.h ../sys/sysctl.h ../sys/syslimits.h ../sys/syslog.h \20 ../sys/systm.h ../sys/ttycom.h ../sys/ttydefaults.h ../sys/ucred.h \21 ../sys/uio.h ../sys/un.h22 23 RTEMS_H_FILES = ../rtems/rtems_bsdnet.h ../rtems/rtems_bsdnet_internal.h \24 ../rtems/tftp.h25 26 MACHINE_H_FILES = ../machine/conf.h ../machine/cpu.h ../machine/cpufunc.h \27 ../machine/endian.h ../machine/in_cksum.h ../machine/limits.h \28 ../machine/param.h ../machine/types.h ../machine/vmparam.h29 30 VM_H_FILES = ../vm/vm.h ../vm/vm_extern.h ../vm/vm_kern.h ../vm/vm_param.h31 32 NET_H_FILES = ../net/bpf.h ../net/ethernet.h ../net/if.h ../net/if_arp.h \33 ../net/if_dl.h ../net/if_llc.h ../net/if_ppp.h ../net/if_types.h \34 ../net/netisr.h ../net/ppp-comp.h ../net/ppp_defs.h ../net/radix.h \35 ../net/raw_cb.h ../net/route.h36 37 NETINET_H_FILES = ../netinet/icmp_var.h ../netinet/if_ether.h \38 ../netinet/igmp.h ../netinet/igmp_var.h ../netinet/in.h \39 ../netinet/in_pcb.h ../netinet/in_systm.h ../netinet/in_var.h \40 ../netinet/ip.h ../netinet/ip_fw.h ../netinet/ip_icmp.h \41 ../netinet/ip_mroute.h ../netinet/ip_var.h ../netinet/tcp.h \42 ../netinet/tcp_debug.h ../netinet/tcp_fsm.h ../netinet/tcp_seq.h \43 ../netinet/tcp_timer.h ../netinet/tcp_var.h ../netinet/tcpip.h \44 ../netinet/udp.h ../netinet/udp_var.h45 46 ARPA_H_FILES = ../arpa/ftp.h ../arpa/inet.h ../arpa/nameser.h \47 ../arpa/nameser_compat.h ../arpa/telnet.h48 49 NFS_H_FILES = ../nfs/krpc.h ../nfs/nfs.h ../nfs/nfsdiskless.h \50 ../nfs/nfsproto.h ../nfs/rpcv2.h ../nfs/xdr_subs.h51 52 RTEMS_SERVERS_H_FILES = ../rtems_servers/ftpd.h53 54 RTEMS_WEBSERVER_H_FILES = ../rtems_webserver/rtems_webserver.h55 56 13 # We only make the install point for the networking header files if needed. 57 58 INSTALLDIRS = $(PROJECT_INCLUDE) $(PROJECT_INCLUDE)/sys \59 $(PROJECT_INCLUDE)/machine $(PROJECT_INCLUDE)/rtems \60 $(PROJECT_INCLUDE)/vm $(PROJECT_INCLUDE)/net $(PROJECT_INCLUDE)/netinet \61 $(PROJECT_INCLUDE)/arpa $(PROJECT_INCLUDE)/nfs62 14 63 15 $(INSTALLDIRS): … … 94 46 $(INSTALL_DATA) $< $@ 95 47 96 $(PROJECT_INCLUDE)/sys/buf.h: ../sys/buf.h97 $(INSTALL_DATA) $< $@98 99 $(PROJECT_INCLUDE)/sys/callout.h: ../sys/callout.h100 $(INSTALL_DATA) $< $@101 102 $(PROJECT_INCLUDE)/sys/cdefs.h: ../sys/cdefs.h103 $(INSTALL_DATA) $< $@104 105 $(PROJECT_INCLUDE)/sys/conf.h: ../sys/conf.h106 $(INSTALL_DATA) $< $@107 108 $(PROJECT_INCLUDE)/sys/domain.h: ../sys/domain.h109 $(INSTALL_DATA) $< $@110 111 $(PROJECT_INCLUDE)/sys/filio.h: ../sys/filio.h112 $(INSTALL_DATA) $< $@113 114 $(PROJECT_INCLUDE)/sys/ioccom.h: ../sys/ioccom.h115 $(INSTALL_DATA) $< $@116 117 $(PROJECT_INCLUDE)/sys/ioctl.h: ../sys/ioctl.h118 $(INSTALL_DATA) $< $@119 120 $(PROJECT_INCLUDE)/sys/kernel.h: ../sys/kernel.h121 $(INSTALL_DATA) $< $@122 123 $(PROJECT_INCLUDE)/sys/libkern.h: ../sys/libkern.h124 $(INSTALL_DATA) $< $@125 126 $(PROJECT_INCLUDE)/sys/malloc.h: ../sys/malloc.h127 $(INSTALL_DATA) $< $@128 129 $(PROJECT_INCLUDE)/sys/mbuf.h: ../sys/mbuf.h130 $(INSTALL_DATA) $< $@131 132 $(PROJECT_INCLUDE)/sys/mount.h: ../sys/mount.h133 $(INSTALL_DATA) $< $@134 135 $(PROJECT_INCLUDE)/sys/param.h: ../sys/param.h136 $(INSTALL_DATA) $< $@137 138 $(PROJECT_INCLUDE)/sys/proc.h: ../sys/proc.h139 $(INSTALL_DATA) $< $@140 141 $(PROJECT_INCLUDE)/sys/protosw.h: ../sys/protosw.h142 $(INSTALL_DATA) $< $@143 144 $(PROJECT_INCLUDE)/sys/queue.h: ../sys/queue.h145 $(INSTALL_DATA) $< $@146 147 $(PROJECT_INCLUDE)/sys/reboot.h: ../sys/reboot.h148 $(INSTALL_DATA) $< $@149 150 $(PROJECT_INCLUDE)/sys/resourcevar.h: ../sys/resourcevar.h151 $(INSTALL_DATA) $< $@152 153 $(PROJECT_INCLUDE)/sys/rtprio.h: ../sys/rtprio.h154 $(INSTALL_DATA) $< $@155 156 $(PROJECT_INCLUDE)/sys/select.h: ../sys/select.h157 $(INSTALL_DATA) $< $@158 159 $(PROJECT_INCLUDE)/sys/signalvar.h: ../sys/signalvar.h160 $(INSTALL_DATA) $< $@161 162 $(PROJECT_INCLUDE)/sys/socket.h: ../sys/socket.h163 $(INSTALL_DATA) $< $@164 165 $(PROJECT_INCLUDE)/sys/socketvar.h: ../sys/socketvar.h166 $(INSTALL_DATA) $< $@167 168 $(PROJECT_INCLUDE)/sys/sockio.h: ../sys/sockio.h169 $(INSTALL_DATA) $< $@170 171 $(PROJECT_INCLUDE)/sys/sysctl.h: ../sys/sysctl.h172 $(INSTALL_DATA) $< $@173 174 $(PROJECT_INCLUDE)/sys/syslimits.h: ../sys/syslimits.h175 $(INSTALL_DATA) $< $@176 177 $(PROJECT_INCLUDE)/sys/syslog.h: ../sys/syslog.h178 $(INSTALL_DATA) $< $@179 180 $(PROJECT_INCLUDE)/sys/systm.h: ../sys/systm.h181 $(INSTALL_DATA) $< $@182 183 $(PROJECT_INCLUDE)/sys/ttycom.h: ../sys/ttycom.h184 $(INSTALL_DATA) $< $@185 186 $(PROJECT_INCLUDE)/sys/ttydefaults.h: ../sys/ttydefaults.h187 $(INSTALL_DATA) $< $@188 189 $(PROJECT_INCLUDE)/sys/ucred.h: ../sys/ucred.h190 $(INSTALL_DATA) $< $@191 192 $(PROJECT_INCLUDE)/sys/uio.h: ../sys/uio.h193 $(INSTALL_DATA) $< $@194 195 $(PROJECT_INCLUDE)/sys/un.h: ../sys/un.h196 $(INSTALL_DATA) $< $@197 198 $(PROJECT_INCLUDE)/rtems/rtems_bsdnet.h: ../rtems/rtems_bsdnet.h199 $(INSTALL_DATA) $< $@200 201 $(PROJECT_INCLUDE)/rtems/rtems_bsdnet_internal.h: \202 ../rtems/rtems_bsdnet_internal.h203 $(INSTALL_DATA) $< $@204 205 $(PROJECT_INCLUDE)/rtems/tftp.h: ../rtems/tftp.h206 $(INSTALL_DATA) $< $@207 208 $(PROJECT_INCLUDE)/machine/conf.h: ../machine/conf.h209 $(INSTALL_DATA) $< $@210 211 $(PROJECT_INCLUDE)/machine/cpu.h: ../machine/cpu.h212 $(INSTALL_DATA) $< $@213 214 $(PROJECT_INCLUDE)/machine/cpufunc.h: ../machine/cpufunc.h215 $(INSTALL_DATA) $< $@216 217 $(PROJECT_INCLUDE)/machine/endian.h: ../machine/endian.h218 $(INSTALL_DATA) $< $@219 220 $(PROJECT_INCLUDE)/machine/in_cksum.h: ../machine/in_cksum.h221 $(INSTALL_DATA) $< $@222 223 $(PROJECT_INCLUDE)/machine/limits.h: ../machine/limits.h224 $(INSTALL_DATA) $< $@225 226 $(PROJECT_INCLUDE)/machine/param.h: ../machine/param.h227 $(INSTALL_DATA) $< $@228 229 $(PROJECT_INCLUDE)/machine/types.h: ../machine/types.h230 $(INSTALL_DATA) $< $@231 232 $(PROJECT_INCLUDE)/machine/vmparam.h: ../machine/vmparam.h233 $(INSTALL_DATA) $< $@234 235 $(PROJECT_INCLUDE)/vm/vm.h: ../vm/vm.h236 $(INSTALL_DATA) $< $@237 238 $(PROJECT_INCLUDE)/vm/vm_extern.h: ../vm/vm_extern.h239 $(INSTALL_DATA) $< $@240 241 $(PROJECT_INCLUDE)/vm/vm_kern.h: ../vm/vm_kern.h242 $(INSTALL_DATA) $< $@243 244 $(PROJECT_INCLUDE)/vm/vm_param.h: ../vm/vm_param.h245 $(INSTALL_DATA) $< $@246 247 $(PROJECT_INCLUDE)/net/bpf.h: ../net/bpf.h248 $(INSTALL_DATA) $< $@249 250 $(PROJECT_INCLUDE)/net/ethernet.h: ../net/ethernet.h251 $(INSTALL_DATA) $< $@252 253 $(PROJECT_INCLUDE)/net/if.h: ../net/if.h254 $(INSTALL_DATA) $< $@255 256 $(PROJECT_INCLUDE)/net/if_arp.h: ../net/if_arp.h257 $(INSTALL_DATA) $< $@258 259 $(PROJECT_INCLUDE)/net/if_dl.h: ../net/if_dl.h260 $(INSTALL_DATA) $< $@261 262 $(PROJECT_INCLUDE)/net/if_llc.h: ../net/if_llc.h263 $(INSTALL_DATA) $< $@264 265 $(PROJECT_INCLUDE)/net/if_ppp.h: ../net/if_ppp.h266 $(INSTALL_DATA) $< $@267 268 $(PROJECT_INCLUDE)/net/if_types.h: ../net/if_types.h269 $(INSTALL_DATA) $< $@270 271 $(PROJECT_INCLUDE)/net/netisr.h: ../net/netisr.h272 $(INSTALL_DATA) $< $@273 274 $(PROJECT_INCLUDE)/net/ppp-comp.h: ../net/ppp-comp.h275 $(INSTALL_DATA) $< $@276 277 $(PROJECT_INCLUDE)/net/ppp_defs.h: ../net/ppp_defs.h278 $(INSTALL_DATA) $< $@279 280 $(PROJECT_INCLUDE)/net/radix.h: ../net/radix.h281 $(INSTALL_DATA) $< $@282 283 $(PROJECT_INCLUDE)/net/raw_cb.h: ../net/raw_cb.h284 $(INSTALL_DATA) $< $@285 286 $(PROJECT_INCLUDE)/net/route.h: ../net/route.h287 $(INSTALL_DATA) $< $@288 289 $(PROJECT_INCLUDE)/netinet/icmp_var.h: ../netinet/icmp_var.h290 $(INSTALL_DATA) $< $@291 292 $(PROJECT_INCLUDE)/netinet/if_ether.h: ../netinet/if_ether.h293 $(INSTALL_DATA) $< $@294 295 $(PROJECT_INCLUDE)/netinet/igmp.h: ../netinet/igmp.h296 $(INSTALL_DATA) $< $@297 298 $(PROJECT_INCLUDE)/netinet/igmp_var.h: ../netinet/igmp_var.h299 $(INSTALL_DATA) $< $@300 301 $(PROJECT_INCLUDE)/netinet/in.h: ../netinet/in.h302 $(INSTALL_DATA) $< $@303 304 $(PROJECT_INCLUDE)/netinet/in_pcb.h: ../netinet/in_pcb.h305 $(INSTALL_DATA) $< $@306 307 $(PROJECT_INCLUDE)/netinet/in_systm.h: ../netinet/in_systm.h308 $(INSTALL_DATA) $< $@309 310 $(PROJECT_INCLUDE)/netinet/in_var.h: ../netinet/in_var.h311 $(INSTALL_DATA) $< $@312 313 $(PROJECT_INCLUDE)/netinet/ip.h: ../netinet/ip.h314 $(INSTALL_DATA) $< $@315 316 $(PROJECT_INCLUDE)/netinet/ip_fw.h: ../netinet/ip_fw.h317 $(INSTALL_DATA) $< $@318 319 $(PROJECT_INCLUDE)/netinet/ip_icmp.h: ../netinet/ip_icmp.h320 $(INSTALL_DATA) $< $@321 322 $(PROJECT_INCLUDE)/netinet/ip_mroute.h: ../netinet/ip_mroute.h323 $(INSTALL_DATA) $< $@324 325 $(PROJECT_INCLUDE)/netinet/ip_var.h: ../netinet/ip_var.h326 $(INSTALL_DATA) $< $@327 328 $(PROJECT_INCLUDE)/netinet/tcp.h: ../netinet/tcp.h329 $(INSTALL_DATA) $< $@330 331 $(PROJECT_INCLUDE)/netinet/tcp_debug.h: ../netinet/tcp_debug.h332 $(INSTALL_DATA) $< $@333 334 $(PROJECT_INCLUDE)/netinet/tcp_fsm.h: ../netinet/tcp_fsm.h335 $(INSTALL_DATA) $< $@336 337 $(PROJECT_INCLUDE)/netinet/tcp_seq.h: ../netinet/tcp_seq.h338 $(INSTALL_DATA) $< $@339 340 $(PROJECT_INCLUDE)/netinet/tcp_timer.h: ../netinet/tcp_timer.h341 $(INSTALL_DATA) $< $@342 343 $(PROJECT_INCLUDE)/netinet/tcp_var.h: ../netinet/tcp_var.h344 $(INSTALL_DATA) $< $@345 346 $(PROJECT_INCLUDE)/netinet/tcpip.h: ../netinet/tcpip.h347 $(INSTALL_DATA) $< $@348 349 $(PROJECT_INCLUDE)/netinet/udp.h: ../netinet/udp.h350 $(INSTALL_DATA) $< $@351 352 $(PROJECT_INCLUDE)/netinet/udp_var.h: ../netinet/udp_var.h353 $(INSTALL_DATA) $< $@354 355 $(PROJECT_INCLUDE)/arpa/ftp.h: ../arpa/ftp.h356 $(INSTALL_DATA) $< $@357 358 $(PROJECT_INCLUDE)/arpa/inet.h: ../arpa/inet.h359 $(INSTALL_DATA) $< $@360 361 $(PROJECT_INCLUDE)/arpa/nameser.h: ../arpa/nameser.h362 $(INSTALL_DATA) $< $@363 364 $(PROJECT_INCLUDE)/arpa/nameser_compat.h: ../arpa/nameser_compat.h365 $(INSTALL_DATA) $< $@366 367 $(PROJECT_INCLUDE)/arpa/telnet.h: ../arpa/telnet.h368 $(INSTALL_DATA) $< $@369 370 $(PROJECT_INCLUDE)/nfs/krpc.h: ../nfs/krpc.h371 $(INSTALL_DATA) $< $@372 373 $(PROJECT_INCLUDE)/nfs/nfs.h: ../nfs/nfs.h374 $(INSTALL_DATA) $< $@375 376 $(PROJECT_INCLUDE)/nfs/nfsdiskless.h: ../nfs/nfsdiskless.h377 $(INSTALL_DATA) $< $@378 379 $(PROJECT_INCLUDE)/nfs/nfsproto.h: ../nfs/nfsproto.h380 $(INSTALL_DATA) $< $@381 382 $(PROJECT_INCLUDE)/nfs/rpcv2.h: ../nfs/rpcv2.h383 $(INSTALL_DATA) $< $@384 385 $(PROJECT_INCLUDE)/nfs/xdr_subs.h: ../nfs/xdr_subs.h386 $(INSTALL_DATA) $< $@387 388 $(PROJECT_INCLUDE)/ftpd.h: ../rtems_servers/ftpd.h389 $(INSTALL_DATA) $< $@390 391 $(PROJECT_INCLUDE)/rtems_webserver.h: ../rtems_webserver/rtems_webserver.h392 $(INSTALL_DATA) $< $@393 394 48 PREINSTALL_FILES += $(PROJECT_INCLUDE) $(PROJECT_INCLUDE)/bpfilter.h \ 395 49 $(PROJECT_INCLUDE)/loop.h $(PROJECT_INCLUDE)/netdb.h \ … … 397 51 $(PROJECT_INCLUDE)/opt_tcpdebug.h $(PROJECT_INCLUDE)/poll.h \ 398 52 $(PROJECT_INCLUDE)/resolv.h $(PROJECT_INCLUDE)/syslog.h \ 399 $(PROJECT_INCLUDE)/memory.h \ 400 $(PROJECT_INCLUDE)/sys $(PROJECT_INCLUDE)/sys/buf.h \ 401 $(PROJECT_INCLUDE)/sys/callout.h $(PROJECT_INCLUDE)/sys/cdefs.h \ 402 $(PROJECT_INCLUDE)/sys/conf.h $(PROJECT_INCLUDE)/sys/domain.h \ 403 $(PROJECT_INCLUDE)/sys/filio.h $(PROJECT_INCLUDE)/sys/ioccom.h \ 404 $(PROJECT_INCLUDE)/sys/ioctl.h $(PROJECT_INCLUDE)/sys/kernel.h \ 405 $(PROJECT_INCLUDE)/sys/libkern.h $(PROJECT_INCLUDE)/sys/malloc.h \ 406 $(PROJECT_INCLUDE)/sys/mbuf.h $(PROJECT_INCLUDE)/sys/mount.h \ 407 $(PROJECT_INCLUDE)/sys/param.h $(PROJECT_INCLUDE)/sys/proc.h \ 408 $(PROJECT_INCLUDE)/sys/protosw.h $(PROJECT_INCLUDE)/sys/queue.h \ 409 $(PROJECT_INCLUDE)/sys/reboot.h $(PROJECT_INCLUDE)/sys/resourcevar.h \ 410 $(PROJECT_INCLUDE)/sys/rtprio.h $(PROJECT_INCLUDE)/sys/select.h \ 411 $(PROJECT_INCLUDE)/sys/signalvar.h $(PROJECT_INCLUDE)/sys/socket.h \ 412 $(PROJECT_INCLUDE)/sys/socketvar.h $(PROJECT_INCLUDE)/sys/sockio.h \ 413 $(PROJECT_INCLUDE)/sys/sysctl.h $(PROJECT_INCLUDE)/sys/syslimits.h \ 414 $(PROJECT_INCLUDE)/sys/syslog.h $(PROJECT_INCLUDE)/sys/systm.h \ 415 $(PROJECT_INCLUDE)/sys/ttycom.h $(PROJECT_INCLUDE)/sys/ttydefaults.h \ 416 $(PROJECT_INCLUDE)/sys/ucred.h $(PROJECT_INCLUDE)/sys/uio.h \ 417 $(PROJECT_INCLUDE)/sys/un.h \ 418 $(PROJECT_INCLUDE)/rtems $(PROJECT_INCLUDE)/rtems/rtems_bsdnet.h \ 419 $(PROJECT_INCLUDE)/rtems/rtems_bsdnet_internal.h \ 420 $(PROJECT_INCLUDE)/rtems/tftp.h $(PROJECT_INCLUDE)/machine \ 421 $(PROJECT_INCLUDE)/machine/conf.h $(PROJECT_INCLUDE)/machine/cpu.h \ 422 $(PROJECT_INCLUDE)/machine/cpufunc.h $(PROJECT_INCLUDE)/machine/endian.h \ 423 $(PROJECT_INCLUDE)/machine/in_cksum.h \ 424 $(PROJECT_INCLUDE)/machine/limits.h $(PROJECT_INCLUDE)/machine/param.h \ 425 $(PROJECT_INCLUDE)/machine/types.h $(PROJECT_INCLUDE)/machine/vmparam.h \ 426 $(PROJECT_INCLUDE)/vm $(PROJECT_INCLUDE)/vm/vm.h \ 427 $(PROJECT_INCLUDE)/vm/vm_extern.h $(PROJECT_INCLUDE)/vm/vm_kern.h \ 428 $(PROJECT_INCLUDE)/vm/vm_param.h $(PROJECT_INCLUDE)/net \ 429 $(PROJECT_INCLUDE)/net/bpf.h $(PROJECT_INCLUDE)/net/ethernet.h \ 430 $(PROJECT_INCLUDE)/net/if.h $(PROJECT_INCLUDE)/net/if_arp.h \ 431 $(PROJECT_INCLUDE)/net/if_dl.h $(PROJECT_INCLUDE)/net/if_llc.h \ 432 $(PROJECT_INCLUDE)/net/if_ppp.h $(PROJECT_INCLUDE)/net/if_types.h \ 433 $(PROJECT_INCLUDE)/net/netisr.h $(PROJECT_INCLUDE)/net/ppp-comp.h \ 434 $(PROJECT_INCLUDE)/net/ppp_defs.h $(PROJECT_INCLUDE)/net/radix.h \ 435 $(PROJECT_INCLUDE)/net/raw_cb.h $(PROJECT_INCLUDE)/net/route.h \ 436 $(PROJECT_INCLUDE)/netinet $(PROJECT_INCLUDE)/netinet/icmp_var.h \ 437 $(PROJECT_INCLUDE)/netinet/if_ether.h $(PROJECT_INCLUDE)/netinet/igmp.h \ 438 $(PROJECT_INCLUDE)/netinet/igmp_var.h $(PROJECT_INCLUDE)/netinet/in.h \ 439 $(PROJECT_INCLUDE)/netinet/in_pcb.h \ 440 $(PROJECT_INCLUDE)/netinet/in_systm.h \ 441 $(PROJECT_INCLUDE)/netinet/in_var.h $(PROJECT_INCLUDE)/netinet/ip.h \ 442 $(PROJECT_INCLUDE)/netinet/ip_fw.h $(PROJECT_INCLUDE)/netinet/ip_icmp.h \ 443 $(PROJECT_INCLUDE)/netinet/ip_mroute.h \ 444 $(PROJECT_INCLUDE)/netinet/ip_var.h $(PROJECT_INCLUDE)/netinet/tcp.h \ 445 $(PROJECT_INCLUDE)/netinet/tcp_debug.h \ 446 $(PROJECT_INCLUDE)/netinet/tcp_fsm.h \ 447 $(PROJECT_INCLUDE)/netinet/tcp_seq.h \ 448 $(PROJECT_INCLUDE)/netinet/tcp_timer.h \ 449 $(PROJECT_INCLUDE)/netinet/tcp_var.h $(PROJECT_INCLUDE)/netinet/tcpip.h \ 450 $(PROJECT_INCLUDE)/netinet/udp.h $(PROJECT_INCLUDE)/netinet/udp_var.h \ 451 $(PROJECT_INCLUDE)/arpa $(PROJECT_INCLUDE)/arpa/ftp.h \ 452 $(PROJECT_INCLUDE)/arpa/inet.h $(PROJECT_INCLUDE)/arpa/nameser.h \ 453 $(PROJECT_INCLUDE)/arpa/nameser_compat.h \ 454 $(PROJECT_INCLUDE)/arpa/telnet.h $(PROJECT_INCLUDE)/nfs \ 455 $(PROJECT_INCLUDE)/nfs/krpc.h $(PROJECT_INCLUDE)/nfs/nfs.h \ 456 $(PROJECT_INCLUDE)/nfs/nfsdiskless.h $(PROJECT_INCLUDE)/nfs/nfsproto.h \ 457 $(PROJECT_INCLUDE)/nfs/rpcv2.h $(PROJECT_INCLUDE)/nfs/xdr_subs.h \ 458 $(PROJECT_INCLUDE)/ftpd.h $(PROJECT_INCLUDE)/rtems_webserver.h 53 $(PROJECT_INCLUDE)/memory.h 459 54 460 55 all-local: $(PREINSTALL_FILES) -
c/src/libnetworking/machine/Makefile.am
r322c894 re89694e 5 5 AUTOMAKE_OPTIONS = foreign 1.4 6 6 7 EXTRA_DIST= conf.h cpu.h cpufunc.h endian.h in_cksum.h limits.h param.h \7 H_FILES = conf.h cpu.h cpufunc.h endian.h in_cksum.h limits.h param.h \ 8 8 types.h vmparam.h 9 9 10 noinst_HEADERS = $(H_FILES) 11 12 PREINSTALL_FILES += $(PROJECT_INCLUDE)/machine \ 13 $(H_FILES:%=$(PROJECT_INCLUDE)/machine/%) 14 15 $(PROJECT_INCLUDE)/machine: 16 @$(mkinstalldirs) $@ 17 18 $(PROJECT_INCLUDE)/machine/%.h: %.h 19 $(INSTALL_DATA) $< $@ 20 21 all-local: $(PREINSTALL_FILES) 22 10 23 include $(top_srcdir)/../../../automake/local.am -
c/src/libnetworking/net/Makefile.am
r322c894 re89694e 27 27 $(make-library) 28 28 29 all-local: $( ARCH) $(OBJS) $(LIB)29 all-local: $(PREINSTALL_FILES) $(ARCH) $(OBJS) $(LIB) 30 30 31 31 .PRECIOUS: $(LIB) 32 32 33 EXTRA_DIST = bpf.h ethernet.h if.c if.h if_arp.h if_dl.h if_ethersubr.c \ 34 if_llc.h if_loop.c if_ppp.h if_types.h netisr.h ppp-comp.h ppp_defs.h \ 35 radix.c radix.h raw_cb.c raw_cb.h raw_usrreq.c route.c route.h rtsock.c 33 EXTRA_DIST = if.c if_ethersubr.c if_loop.c \ 34 radix.c raw_cb.c raw_usrreq.c route.c rtsock.c 35 36 H_FILES = bpf.h ethernet.h if.h if_arp.h if_dl.h if_llc.h if_ppp.h if_types.h \ 37 netisr.h ppp-comp.h ppp_defs.h radix.h raw_cb.h route.h 38 39 noinst_HEADERS = $(H_FILES) 40 41 PREINSTALL_FILES += $(PROJECT_INCLUDE)/net $(H_FILES:%=$(PROJECT_INCLUDE)/net/%) 42 43 $(PROJECT_INCLUDE)/net: 44 @$(mkinstalldirs) $@ 45 46 $(PROJECT_INCLUDE)/net/%.h: %.h 47 $(INSTALL_DATA) $< $@ 36 48 37 49 include $(top_srcdir)/../../../automake/local.am -
c/src/libnetworking/netinet/Makefile.am
r322c894 re89694e 29 29 $(make-library) 30 30 31 all-local: $( ARCH) $(OBJS) $(LIB)31 all-local: $(PREINSTALL_FILES) $(ARCH) $(OBJS) $(LIB) 32 32 33 33 .PRECIOUS: $(LIB) 34 34 35 EXTRA_DIST = icmp_var.h if_ether.c if_ether.h igmp.c igmp.h igmp_var.h in.c \ 36 in.h in_cksum.c in_cksum_i386.c in_cksum_m68k.c in_cksum_powerpc.c \ 37 in_pcb.c in_pcb.h in_proto.c in_rmx.c in_systm.h in_var.h ip.h \ 38 ip_divert.c ip_fw.c ip_fw.h ip_icmp.c ip_icmp.h ip_input.c ip_mroute.c \ 39 ip_mroute.h ip_output.c ip_var.h raw_ip.c tcp.h tcp_debug.c tcp_debug.h \ 40 tcp_fsm.h tcp_input.c tcp_output.c tcp_seq.h tcp_subr.c tcp_timer.c \ 41 tcp_timer.h tcp_usrreq.c tcp_var.h tcpip.h udp.h udp_usrreq.c udp_var.h 35 EXTRA_DIST = if_ether.c igmp.c igmp_var.h in.c in_cksum.c in_cksum_i386.c \ 36 in_cksum_m68k.c in_cksum_powerpc.c in_pcb.c in_proto.c in_rmx.c \ 37 ip_divert.c ip_fw.c ip_icmp.c ip_input.c ip_mroute.c ip_output.c \ 38 raw_ip.c tcp_debug.c tcp_input.c tcp_output.c tcp_subr.c tcp_timer.c \ 39 tcp_usrreq.c udp_usrreq.c 40 41 H_FILES = icmp_var.h if_ether.h igmp.h igmp_var.h in.h \ 42 in_pcb.h in_systm.h in_var.h ip.h ip_fw.h ip_icmp.h \ 43 ip_mroute.h ip_var.h tcp.h tcp_debug.h tcp_fsm.h tcp_seq.h \ 44 tcp_timer.h tcp_var.h tcpip.h udp.h udp_var.h 45 46 noinst_HEADERS = $(H_FILES) 47 48 PREINSTALL_FILES += $(PROJECT_INCLUDE)/netinet \ 49 $(H_FILES:%=$(PROJECT_INCLUDE)/netinet/%) 50 51 $(PROJECT_INCLUDE)/netinet: 52 @$(mkinstalldirs) $@ 53 54 $(PROJECT_INCLUDE)/netinet/%.h: %.h 55 $(INSTALL_DATA) $< $@ 42 56 43 57 include $(top_srcdir)/../../../automake/local.am -
c/src/libnetworking/nfs/Makefile.am
r322c894 re89694e 26 26 $(make-library) 27 27 28 all-local: $( ARCH) $(OBJS) $(LIB)28 all-local: $(PREINSTALL_FILES) $(ARCH) $(OBJS) $(LIB) 29 29 30 30 .PRECIOUS: $(LIB) 31 31 32 EXTRA_DIST = bootp_subr.c krpc.h nfs.h nfsdiskless.h nfsproto.h rpcv2.h \ 33 xdr_subs.h 32 EXTRA_DIST = bootp_subr.c 33 34 H_FILES = krpc.h nfs.h nfsdiskless.h nfsproto.h rpcv2.h xdr_subs.h 35 36 noinst_HEADERS = $(H_FILES) 37 38 PREINSTALL_FILES += $(PROJECT_INCLUDE)/nfs $(H_FILES:%=$(PROJECT_INCLUDE)/nfs/%) 39 40 $(PROJECT_INCLUDE)/nfs: 41 @$(mkinstalldirs) $@ 42 43 $(PROJECT_INCLUDE)/nfs/%.h: %.h 44 $(INSTALL_DATA) $< $@ 45 34 46 35 47 include $(top_srcdir)/../../../automake/local.am -
c/src/libnetworking/rtems/Makefile.am
r322c894 re89694e 16 16 OBJS = $(C_O_FILES) 17 17 18 H_FILES = rtems_bsdnet.h rtems_bsdnet_internal.h tftp.h 19 20 noinst_HEADERS = $(H_FILES) 21 22 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems $(H_FILES:%=$(PROJECT_INCLUDE)/rtems/%) 23 24 $(PROJECT_INCLUDE)/rtems: 25 @$(mkinstalldirs) $@ 26 27 $(PROJECT_INCLUDE)/rtems/%.h: %.h 28 $(INSTALL_DATA) $< $@ 29 30 18 31 include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg 19 32 include $(top_srcdir)/../../../automake/lib.am … … 29 42 $(make-library) 30 43 31 all-local: $( ARCH) $(OBJS) $(LIB)44 all-local: $(PREINSTALL_FILES) $(ARCH) $(OBJS) $(LIB) 32 45 33 46 .PRECIOUS: $(LIB) 34 47 35 EXTRA_DIST = issetugid.c rtems_bootp.c rtems_bsdnet.h \ 36 rtems_bsdnet_internal.h rtems_glue.c rtems_select.c rtems_showicmpstat.c \ 48 EXTRA_DIST = issetugid.c rtems_bootp.c rtems_glue.c rtems_select.c rtems_showicmpstat.c \ 37 49 rtems_showifstat.c rtems_showipstat.c rtems_showmbuf.c rtems_showroute.c \ 38 rtems_showtcpstat.c rtems_showudpstat.c rtems_syscall.c sghostname.c \ 39 tftp.h 50 rtems_showtcpstat.c rtems_showudpstat.c rtems_syscall.c sghostname.c 40 51 41 52 include $(top_srcdir)/../../../automake/local.am -
c/src/libnetworking/rtems_servers/Makefile.am
r322c894 re89694e 23 23 $(make-library) 24 24 25 all-local: $( ARCH) $(OBJS) $(LIB)25 all-local: $(PREINSTALL_FILES) $(ARCH) $(OBJS) $(LIB) 26 26 27 27 .PRECIOUS: $(LIB) … … 29 29 EXTRA_DIST = ftpd.c ftpd.h 30 30 31 H_FILES = ftpd.h 32 33 noinst_HEADERS = $(H_FILES) 34 35 PREINSTALL_FILES += $(PROJECT_INCLUDE) $(H_FILES:%=$(PROJECT_INCLUDE)/%) 36 37 $(PROJECT_INCLUDE)/%.h: %.h 38 $(INSTALL_DATA) $< $@ 39 31 40 include $(top_srcdir)/../../../automake/local.am -
c/src/libnetworking/rtems_webserver/Makefile.am
r322c894 re89694e 38 38 $(INSTALL_DATA) $< $@ 39 39 40 PREINSTALL_FILES += $(PROJECT_INCLUDE) $(PROJECT_INCLUDE)/goahead \ 40 $(PROJECT_INCLUDE)/rtems_webserver.h: rtems_webserver.h 41 $(INSTALL_DATA) $< $@ 42 43 PREINSTALL_FILES += $(PROJECT_INCLUDE) \ 44 $(PROJECT_INCLUDE)/rtems_webserver.h $(PROJECT_INCLUDE)/goahead \ 41 45 $(H_FILES:%.h=$(PROJECT_INCLUDE)/goahead/%.h) 42 46 -
c/src/libnetworking/sys/Makefile.am
r322c894 re89694e 5 5 AUTOMAKE_OPTIONS = foreign 1.4 6 6 7 EXTRA_DIST= buf.h callout.h cdefs.h conf.h domain.h filio.h ioccom.h \7 H_FILES = buf.h callout.h cdefs.h conf.h domain.h filio.h ioccom.h \ 8 8 ioctl.h kernel.h libkern.h malloc.h mbuf.h mount.h param.h proc.h \ 9 9 protosw.h queue.h reboot.h resourcevar.h rtprio.h select.h signalvar.h \ … … 11 11 ttycom.h ttydefaults.h ucred.h uio.h un.h 12 12 13 noinst_HEADERS = $(H_FILES) 14 15 PREINSTALL_FILES += $(PROJECT_INCLUDE)/sys $(H_FILES:%=$(PROJECT_INCLUDE)/sys/%) 16 17 $(PROJECT_INCLUDE)/sys: 18 @$(mkinstalldirs) $@ 19 20 $(PROJECT_INCLUDE)/sys/%.h: %.h 21 $(INSTALL_DATA) $< $@ 22 23 all-local: $(PREINSTALL_FILES) 24 13 25 include $(top_srcdir)/../../../automake/local.am -
c/src/libnetworking/vm/Makefile.am
r322c894 re89694e 5 5 AUTOMAKE_OPTIONS = foreign 1.4 6 6 7 EXTRA_DIST = vm.h vm_extern.h vm_kern.h vm_param.h 7 H_FILES = vm.h vm_extern.h vm_kern.h vm_param.h 8 9 noinst_HEADERS = $(H_FILES) 10 11 PREINSTALL_FILES += $(PROJECT_INCLUDE)/vm \ 12 $(H_FILES:%=$(PROJECT_INCLUDE)/vm/%) 13 14 $(PROJECT_INCLUDE)/vm: 15 @$(mkinstalldirs) $@ 16 17 $(PROJECT_INCLUDE)/vm/%.h: %.h 18 $(INSTALL_DATA) $< $@ 19 20 all-local: $(PREINSTALL_FILES) 8 21 9 22 include $(top_srcdir)/../../../automake/local.am
Note: See TracChangeset
for help on using the changeset viewer.