source: rtems/c/src/exec/libnetworking/nfs/Makefile.am @ 9b28bea5

4.104.114.84.95
Last change on this file since 9b28bea5 was 9b28bea5, checked in by Joel Sherrill <joel.sherrill@…>, on 09/05/00 at 16:07:35

2000-09-04 Ralf Corsepius <corsepiu@…>

  • kern/Makefile.am, lib/Makefile.am, libc/Makefile.am, net/Makefile.am, netinet/Makefile.am, nfs/Makefile.am, pppd/Makefile.am, rtems/Makefile.am, rtems_servers/Makefile.am, rtems_webserver/Makefile.am, wrapup/Makefile.am: Include compile.am
  • Property mode set to 100644
File size: 928 bytes
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7LIBNAME = lib.a
8LIB = $(ARCH)/$(LIBNAME)
9
10C_FILES = bootp_subr.c
11C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
12
13OBJS = $(C_O_FILES)
14
15include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
16include $(top_srcdir)/../../../automake/compile.am
17include $(top_srcdir)/../../../automake/lib.am
18
19#
20# Add local stuff here using +=
21#
22
23AM_CPPFLAGS += -D_COMPILING_BSD_KERNEL_ -DKERNEL -DINET -DNFS -DDIAGNOSTIC \
24    -DBOOTP_COMPAT
25
26$(LIB): $(OBJS)
27        $(make-library)
28
29all-local: $(PREINSTALL_FILES) $(ARCH) $(OBJS) $(LIB)
30
31.PRECIOUS: $(LIB)
32
33EXTRA_DIST = bootp_subr.c
34
35H_FILES = krpc.h nfs.h nfsdiskless.h nfsproto.h rpcv2.h xdr_subs.h
36
37noinst_HEADERS = $(H_FILES)
38
39PREINSTALL_FILES += $(PROJECT_INCLUDE)/nfs \
40    $(H_FILES:%=$(PROJECT_INCLUDE)/nfs/%)
41
42$(PROJECT_INCLUDE)/nfs:
43        @$(mkinstalldirs) $@
44
45$(PROJECT_INCLUDE)/nfs/%.h: %.h
46        $(INSTALL_DATA) $< $@
47
48include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.