source: rtems/cpukit/librpc/src/rpc/Makefile.am @ ae56a27

4.104.114.84.95
Last change on this file since ae56a27 was ae56a27, checked in by Ralf Corsepius <ralf.corsepius@…>, on 07/22/02 at 09:36:06

2002-07-22 Ralf Corsepius <corsepiu@…>

  • src/xdr/Makefile.am: Eliminate LIBNAME.
  • src/rpc/Makefile.am: Eliminate LIBNAME.
  • Property mode set to 100644
File size: 1.5 KB
Line 
1##
2## $Id$
3##
4
5include $(top_srcdir)/../automake/multilib.am
6include $(top_srcdir)/../automake/compile.am
7include $(top_srcdir)/../automake/lib.am
8
9SUBDIRS = PSD.doc
10
11LIB = $(ARCH)/librpc.a
12
13C_FILES = auth_none.c auth_unix.c authunix_prot.c bindresvport.c \
14    clnt_generic.c clnt_perror.c clnt_raw.c clnt_simple.c clnt_tcp.c \
15    clnt_udp.c get_myaddress.c getrpcent.c getrpcport.c netname.c netnamer.c \
16    pmap_clnt.c pmap_getmaps.c pmap_getport.c pmap_prot.c pmap_prot2.c \
17    pmap_rmt.c rpc_callmsg.c rpc_commondata.c rpc_dtablesize.c rpc_prot.c \
18    rpcdname.c rtime.c svc.c svc_auth.c svc_auth_unix.c svc_raw.c svc_run.c \
19    svc_simple.c svc_tcp.c svc_udp.c rtems_portmapper.c rtems_rpc.c
20UNUSED_C_FILES = auth_des.c auth_time.c authdes_prot.c clnt_unix.c \
21    crypt_client.c des_crypt.c des_soft.c getpublickey.c key_call.c \
22    key_prot_xdr.c svc_auth_des.c svc_unix.c
23
24C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
25
26OBJS = $(C_O_FILES)
27
28#
29# Add local stuff here using +=
30#
31
32AM_CPPFLAGS += '-D__P(x)=x' -D_RPC_read=read -D_RPC_write=write -D_RPC_close=close -D_RTEMS_RPC_INTERNAL_
33
34$(LIB): $(OBJS)
35        $(make-library)
36
37noinst_MANS = bindresvport.3 getrpcent.3 publickey.3 rpc.3 rpc_secure.3 \
38    rstat_svc.8 des_crypt.3 getrpcport.3 publickey.5 rpc.5 rstat.1 rtime.3
39
40if HAS_NETWORKING
41man_MANS = $(noinst_MANS)
42all-local: $(ARCH) $(LIB)
43endif
44
45EXTRA_DIST = $(C_FILES) DISCLAIMER $(UNUSED_C_FILES) $(noinst_MANS)
46
47include $(top_srcdir)/../automake/subdirs.am
48include $(top_srcdir)/../automake/local.am
Note: See TracBrowser for help on using the repository browser.