source: rtems/c/src/Makefile.am @ 72650fcb

4.104.114.84.95
Last change on this file since 72650fcb was 8dc51855, checked in by Joel Sherrill <joel.sherrill@…>, on 10/17/01 at 13:14:34

2001-10-16 Ralf Corsepius <corsepiu@…>

  • Makefile.am: Use SUBDIRS = @subdirs@, require automake-1.5.
  • configure.ac: Replace hst_subdirs with AC_CONFIG_SUBDIRS to make autoconf-2.52 happy.
  • Property mode set to 100644
File size: 617 bytes
Line 
1##
2##  $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.5
6ACLOCAL_AMFLAGS = -I ../../aclocal
7
8SUBDIRS = @subdirs@
9
10# NOTE: The wildcard on the install should pick up everything except
11#       the tests directory.  This significantly minimizes the install size.
12install-data-local:
13        $(mkinstalldirs) $(DESTDIR)$(exec_prefix)/@RTEMS_BSP@
14        cd $(PROJECT_ROOT)/@RTEMS_BSP@; \
15          tar cf - [bilsuM]* | \
16          (cd $(DESTDIR)$(exec_prefix)/@RTEMS_BSP@; tar xpBf - );
17
18uninstall-local:
19        rm -rf $(DESTDIR)$(exec_prefix)/@RTEMS_BSP@/[bsl]*;
20
21include $(top_srcdir)/../../automake/subdirs.am
22include $(top_srcdir)/../../automake/host.am
Note: See TracBrowser for help on using the repository browser.