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

4.104.114.84.95
Last change on this file since abc1167 was abc1167, checked in by Ralf Corsepius <ralf.corsepius@…>, on 06/25/02 at 17:41:49

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

  • configure.ac: RTEMS_TOP(../../../..). AC_CONFIG_AUX_DIR(../../../..). Remove RTEMS_CANONICAL_HOST. Use RTEMS_ENV_RTEMSCPU. Add AC_PROG_RANLIB.
  • include/rpc/Makefile.am: Include $(top_srcdir)/../automake/*.am.
  • include/Makefile.am: Include $(top_srcdir)/../automake/*.am.
  • include/rpcsvc/Makefile.am: Include $(top_srcdir)/../automake/*.am.
  • Makefile.am: Include $(top_srcdir)/../automake/*.am. ACLOCAL_AMFLAGS = -I ../aclocal.
  • src/rpc/PSD.doc/Makefile.am: Include $(top_srcdir)/../automake/*.am.
  • src/rpc/Makefile.am: Include $(top_srcdir)/../automake/*.am.
  • src/xdr/Makefile.am: Include $(top_srcdir)/../automake/*.am.
  • src/Makefile.am: Include $(top_srcdir)/../automake/*.am.
  • 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
11LIBNAME = librpc
12LIB = $(ARCH)/$(LIBNAME).a
13
14C_FILES = auth_none.c auth_unix.c authunix_prot.c bindresvport.c \
15    clnt_generic.c clnt_perror.c clnt_raw.c clnt_simple.c clnt_tcp.c \
16    clnt_udp.c get_myaddress.c getrpcent.c getrpcport.c netname.c netnamer.c \
17    pmap_clnt.c pmap_getmaps.c pmap_getport.c pmap_prot.c pmap_prot2.c \
18    pmap_rmt.c rpc_callmsg.c rpc_commondata.c rpc_dtablesize.c rpc_prot.c \
19    rpcdname.c rtime.c svc.c svc_auth.c svc_auth_unix.c svc_raw.c svc_run.c \
20    svc_simple.c svc_tcp.c svc_udp.c rtems_portmapper.c rtems_rpc.c
21UNUSED_C_FILES = auth_des.c auth_time.c authdes_prot.c clnt_unix.c \
22    crypt_client.c des_crypt.c des_soft.c getpublickey.c key_call.c \
23    key_prot_xdr.c svc_auth_des.c svc_unix.c
24
25C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
26
27OBJS = $(C_O_FILES)
28
29#
30# Add local stuff here using +=
31#
32
33AM_CPPFLAGS += '-D__P(x)=x' -D_RPC_read=read -D_RPC_write=write -D_RPC_close=close -D_RTEMS_RPC_INTERNAL_
34
35$(LIB): $(OBJS)
36        $(make-library)
37
38noinst_MANS = bindresvport.3 getrpcent.3 publickey.3 rpc.3 rpc_secure.3 \
39    rstat_svc.8 des_crypt.3 getrpcport.3 publickey.5 rpc.5 rstat.1 rtime.3
40
41if HAS_NETWORKING
42man_MANS = $(noinst_MANS)
43all-local: $(ARCH) $(LIB)
44endif
45
46EXTRA_DIST = $(C_FILES) DISCLAIMER $(UNUSED_C_FILES) $(noinst_MANS)
47
48include $(top_srcdir)/../automake/subdirs.am
49include $(top_srcdir)/../automake/local.am
Note: See TracBrowser for help on using the repository browser.