source: rtems/c/src/libnetworking/libc/Makefile.am @ 01d48bf8

4.104.114.84.95
Last change on this file since 01d48bf8 was 01d48bf8, checked in by Joel Sherrill <joel.sherrill@…>, on 03/28/02 at 00:49:43

2002-03-27 Ralf Corsepius <corsepiu@…>

  • configure.ac: AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS). AM_INIT_AUTOMAKE([no-define foreign 1.6]).
  • arpa/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • kern/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • Makefile.am: Remove AUTOMAKE_OPTIONS.
  • lib/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • libc/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • machine/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • net/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • netinet/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • nfs/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • pppd/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • rtems/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • rtems_servers/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • rtems_telnetd/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • rtems_webserver/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • sys/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • vm/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • Property mode set to 100644
File size: 2.1 KB
Line 
1##
2## $Id$
3##
4
5
6LIBNAME = lib.a
7LIB = $(ARCH)/$(LIBNAME)
8
9C_FILES = addr2ascii.c ascii2addr.c base64.c gethostbydns.c gethostbyht.c \
10    gethostbynis.c gethostnamadr.c getnetbydns.c getnetbyht.c getnetbynis.c \
11    getnetnamadr.c getproto.c getprotoent.c getprotoname.c getservbyname.c \
12    getservbyport.c getservent.c herror.c inet_addr.c inet_lnaof.c \
13    inet_makeaddr.c inet_netof.c inet_network.c inet_ntoa.c inet_ntop.c \
14    inet_pton.c linkaddr.c map_v4v6.c nsap_addr.c ns_name.c ns_netint.c \
15    ns_parse.c ns_print.c ns_ttl.c res_comp.c res_data.c res_debug.c \
16    res_init.c res_mkquery.c res_mkupdate.c res_query.c res_send.c \
17    res_stubs.c res_update.c strsep.c rcmd.c
18C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
19
20OBJS = $(C_O_FILES)
21
22include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
23include $(top_srcdir)/../../../automake/compile.am
24include $(top_srcdir)/../../../automake/lib.am
25
26man_MANS = addr2ascii.3 byteorder.3 ethers.3 gethostbyname.3 getnetent.3 \
27    getprotoent.3 getservent.3 inet.3 iso_addr.3 linkaddr.3 ns.3 rcmd.3 \
28    resolver.3
29
30#
31# Add local stuff here using +=
32#
33
34AM_CPPFLAGS += -DNOPOLL -DNOSELECT
35
36$(LIB): $(OBJS)
37        $(make-library)
38
39all-local: $(ARCH) $(OBJS) $(LIB)
40
41.PRECIOUS: $(LIB)
42
43EXTRA_DIST = addr2ascii.3 addr2ascii.c ascii2addr.c base64.c byteorder.3 \
44    ether_addr.c ethers.3 gethostbydns.c gethostbyht.c gethostbyname.3 \
45    gethostbynis.c gethostnamadr.c gethostname.c getnetbydns.c getnetbyht.c \
46    getnetbynis.c getnetent.3 getnetnamadr.c getproto.c getprotoent.3 \
47    getprotoent.c getprotoname.c getservbyname.c getservbyport.c \
48    getservent.3 getservent.c herror.c inet.3 inet_addr.c inet_lnaof.c \
49    inet_makeaddr.c inet_net_ntop.c inet_net_pton.c inet_neta.c inet_netof.c \
50    inet_network.c inet_ntoa.c inet_ntop.c inet_pton.c map_v4v6.c linkaddr.3 \
51    linkaddr.c ns.3 ns_addr.c ns_name.c ns_netint.c ns_ntoa.c ns_parse.c \
52    ns_print.c ns_ttl.c nsap_addr.c rcmd.3 rcmd.c recv.c res_comp.c \
53    res_config.h res_data.c res_debug.c res_init.c res_mkquery.c \
54    res_mkupdate.c res_query.c res_send.c res_stubs.c res_update.c \
55    resolver.3 send.c strsep.c
56
57include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.