source: rtems/cpukit/libnetworking/nfs/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: 905 bytes
Line 
1##
2## $Id$
3##
4
5
6include_nfsdir = $(includedir)/nfs
7
8LIBNAME = lib.a
9LIB = $(ARCH)/$(LIBNAME)
10
11C_FILES = bootp_subr.c
12C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
13
14OBJS = $(C_O_FILES)
15
16include $(top_srcdir)/../automake/multilib.am
17include $(top_srcdir)/../automake/compile.am
18include $(top_srcdir)/../automake/lib.am
19
20#
21# Add local stuff here using +=
22#
23
24AM_CPPFLAGS += -D_COMPILING_BSD_KERNEL_ -DKERNEL -DINET -DNFS -DDIAGNOSTIC \
25    -DBOOTP_COMPAT
26
27$(LIB): $(OBJS)
28        $(make-library)
29
30all-local: $(PREINSTALL_FILES) $(ARCH) $(OBJS) $(LIB)
31
32.PRECIOUS: $(LIB)
33
34EXTRA_DIST = bootp_subr.c
35
36include_nfs_HEADERS = krpc.h nfs.h nfsdiskless.h nfsproto.h rpcv2.h xdr_subs.h
37
38PREINSTALL_FILES = $(PROJECT_INCLUDE)/nfs \
39    $(include_nfs_HEADERS:%=$(PROJECT_INCLUDE)/nfs/%)
40
41$(PROJECT_INCLUDE)/nfs:
42        @$(mkinstalldirs) $@
43
44$(PROJECT_INCLUDE)/nfs/%.h: %.h
45        $(INSTALL_DATA) $< $@
46
47include $(top_srcdir)/../automake/local.am
Note: See TracBrowser for help on using the repository browser.