source: rtems/c/src/librpc/src/rpc/Makefile.am @ 00a9ac1d

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

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

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