source: rtems/c/src/libnetworking/netinet/Makefile.am @ e6d8fe47

4.104.114.84.95
Last change on this file since e6d8fe47 was e6d8fe47, checked in by Joel Sherrill <joel.sherrill@…>, on 02/05/01 at 18:36:27

2001-02-03 Ralf Corsepius <corsepiu@…>

  • Makefile.am, arpa/Makefile.am, machine/Makefile.am, net/Makefile.am, netinet/Makefile.am, nfs/Makefile.am, rtems/Makefile.am, rtems_servers/Makefile.am, rtems_webserver/Makefile.am, sys/Makefile.am, vm/Makefile.am: Apply include_*HEADERS instead of H_FILES.
  • include/Makefile.am: Remove.
  • Makefile.am: Add handling of *.h files.
  • configure.in: Remove include/Makefile.
  • Property mode set to 100644
File size: 1.6 KB
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7include_netinetdir = $(includedir)/netinet
8
9LIBNAME = lib.a
10LIB = $(ARCH)/$(LIBNAME)
11
12C_FILES = if_ether.c igmp.c in.c in_cksum.c in_pcb.c in_proto.c in_rmx.c \
13    ip_divert.c ip_fw.c ip_icmp.c ip_input.c ip_mroute.c ip_output.c \
14    raw_ip.c tcp_debug.c tcp_input.c tcp_output.c tcp_subr.c tcp_timer.c \
15    tcp_usrreq.c udp_usrreq.c
16C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
17
18OBJS = $(C_O_FILES)
19
20include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
21include $(top_srcdir)/../../../automake/compile.am
22include $(top_srcdir)/../../../automake/lib.am
23
24#
25# Add local stuff here using +=
26#
27
28AM_CPPFLAGS += -D_COMPILING_BSD_KERNEL_ -DKERNEL -DINET -DNFS -DDIAGNOSTIC \
29    -DBOOTP_COMPAT
30
31$(LIB): $(OBJS)
32        $(make-library)
33
34all-local: $(PREINSTALL_FILES) $(ARCH) $(OBJS) $(LIB)
35
36.PRECIOUS: $(LIB)
37
38EXTRA_DIST = if_ether.c igmp.c igmp_var.h in.c in_cksum.c in_cksum_i386.c \
39    in_cksum_m68k.c in_cksum_powerpc.c in_pcb.c in_proto.c in_rmx.c \
40    ip_divert.c ip_fw.c ip_icmp.c ip_input.c ip_mroute.c ip_output.c \
41    raw_ip.c tcp_debug.c tcp_input.c tcp_output.c tcp_subr.c tcp_timer.c \
42    tcp_usrreq.c udp_usrreq.c
43
44include_netinet_HEADERS = icmp_var.h if_ether.h igmp.h igmp_var.h in.h in_pcb.h in_systm.h \
45    in_var.h ip.h ip_fw.h ip_icmp.h ip_mroute.h ip_var.h tcp.h tcp_debug.h \
46    tcp_fsm.h tcp_seq.h tcp_timer.h tcp_var.h tcpip.h udp.h udp_var.h
47
48PREINSTALL_FILES += $(PROJECT_INCLUDE)/netinet \
49    $(include_netinet_HEADERS:%=$(PROJECT_INCLUDE)/netinet/%)
50
51$(PROJECT_INCLUDE)/netinet:
52        @$(mkinstalldirs) $@
53
54$(PROJECT_INCLUDE)/netinet/%.h: %.h
55        $(INSTALL_DATA) $< $@
56
57include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.