source: rtems/c/src/lib/Makefile.in @ a719382

4.104.114.84.95
Last change on this file since a719382 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: 1.6 KB
Line 
1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
7top_srcdir = @top_srcdir@
8top_builddir = .
9
10ACLOCAL = aclocal
11AUTOCONF = autoconf
12ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
13ACLOCAL_AMFLAGS = -I @RTEMS_TOPdir@/aclocal
14
15RTEMS_ROOT = @RTEMS_ROOT@
16PROJECT_ROOT = @PROJECT_ROOT@
17
18VPATH = @srcdir@
19
20include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
21include $(RTEMS_ROOT)/make/directory.cfg
22
23INSTALL_CHANGE = @INSTALL_CHANGE@
24
25# We only build the networking library if HAS_NETWORKING was defined
26LIBNETWORKING_yes_V = libnetworking
27LIBNETWORKING = $(LIBNETWORKING_$(HAS_NETWORKING)_V)
28
29# We only build the rpc library if HAS_NETWORKING was defined
30LIBRPC_yes_V = librpc
31LIBRPC = $(LIBRPC_$(HAS_NETWORKING)_V)
32
33# We only build the rdbg library if HAS_NETWORKING and HAS_RDBG was defined
34LIBRDBG_yes_yes_V = librdbg
35LIBRDBG = $(LIBRDBG_$(HAS_NETWORKING)_$(HAS_RDBG)_V)
36
37# General Hardware API library
38LIBHWAPI = $(wildcard libhwapi)
39
40@UNIX_FALSE@LIBCHIP = libchip
41
42SUB_DIRS = start include libmisc libc $(LIBNETWORKING) libcpu libbsp \
43    $(LIBRPC) $(LIBRDBG) $(LIBCHIP) $(LIBHWAPI) $(LIBRTEMSCPLUSPLUS) wrapup
44
45CLOBBER_ADDITIONS += config.log config.cache
46
47Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
48        cd $(top_builddir) \
49         && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
50
51$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ configure.in
52        cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
53
54config.status: $(srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
55        $(SHELL) ./config.status --recheck
56$(srcdir)/configure: @MAINTAINER_MODE_TRUE@$(srcdir)/configure.in $(ACLOCAL_M4)
57        cd $(srcdir) && $(AUTOCONF)
Note: See TracBrowser for help on using the repository browser.