source: rtems/cpukit/libnetworking/netinet/Makefile.am @ f22ebf0

4.104.114.84.95
Last change on this file since f22ebf0 was f22ebf0, checked in by Ralf Corsepius <ralf.corsepius@…>, on 06/17/02 at 09:12:00

2002-06-17 Ralf Corsepius <corsepiu@…>

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