source: rtems/c/src/libnetworking/wrapup/Makefile.am @ e2af631

4.104.114.84.95
Last change on this file since e2af631 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: 800 bytes
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7if HAS_POSIX
8POSIX_PIECES = rtems_webserver
9endif
10
11NET_O_PIECES = kern lib libc net netinet nfs rtems rtems_servers pppd \
12    $(POSIX_PIECES)
13OBJS = $(foreach piece, $(NET_O_PIECES), ../$(piece)/$(ARCH)/*.o)
14LIB = $(ARCH)/libnetworking.a
15
16include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
17include $(top_srcdir)/../../../automake/compile.am
18include $(top_srcdir)/../../../automake/lib.am
19
20#
21# (OPTIONAL) Add local stuff here using +=
22#
23
24$(LIB): $(OBJS)
25        $(make-library)
26
27$(PROJECT_RELEASE)/lib/libnetworking$(LIB_VARIANT).a: $(LIB)
28        $(INSTALL_DATA) $< $@
29
30TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/libnetworking$(LIB_VARIANT).a
31
32all-local: $(ARCH) $(OBJS) $(LIB) $(TMPINSTALL_FILES)
33
34.PRECIOUS: $(LIB)
35
36include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.