source: rtems/c/src/Makefile.am @ c935c5f

4.104.114.84.95
Last change on this file since c935c5f was a719382, checked in by Joel Sherrill <joel.sherrill@…>, on 08/30/99 at 18:38:26

Patch from Ralf Corsepius <corsepiu@…> to move
c/src/lib/librtems++ and c/src/lib/include/rtems++ to
their own package librtems++ at the top of the tree.

To apply:

mkdir c/src/librtems++
cp c/src/lib/librtems++/README c/src/librtems++
mkdir c/src/librtems++/src
cp c/src/lib/librtems++/*.cc c/src/librtems++/src
cp c/src/lib/librtems++/Makefile.in c/src/librtems++/src
mkdir c/src/librtems++/include
mkdir c/src/librtems++/include/rtems++
cp c/src/lib/include/rtems++/*.h c/src/librtems++/include/rtems++
patch -p1 <rtems-rc-19990802-5.diff
rm -rf c/src/lib/librtems++
rm -rf c/src/lib/include/rtems++
./autogen

Attention:

  • The procedure above copies the files first, then patches them and finally removes the old files afterwards. This has been done to enable you to copy the files in CVS to preserve their history.
  • Property mode set to 100644
File size: 589 bytes
Line 
1#
2#  $Id$
3#
4
5AUTOMAKE_OPTIONS = foreign 1.4
6ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal
7
8SUBDIRS= make exec lib librtems++ tests
9
10rtems_bspdir=$(prefix)/@RTEMS_BSP@
11
12# NOTE: The wildcard on the install should pick up everything except
13#       the tests directory.  This significantly minimizes the install size.
14install-data-local:
15        rm -rf $(rtems_bspdir)/[bsl]*;
16        $(mkinstalldirs) $(rtems_bspdir)
17        cd $(PROJECT_ROOT); \
18          tar cf - @RTEMS_BSP@/[bilsuM]* | (cd $(prefix); tar xpBf - );
19
20include $(top_srcdir)/../../automake/subdirs.am
21include $(top_srcdir)/../../automake/local.am
Note: See TracBrowser for help on using the repository browser.