source: rtems/c/src/Makefile.am @ 66c373bf

4.104.114.84.95
Last change on this file since 66c373bf was e7495ae, checked in by Ralf Corsepius <ralf.corsepius@…>, on 02/17/04 at 13:41:35

2004-02-17 Ralf Corsepius <corsepiu@…>

  • librdbg/Makefile.am: Merge-in librdbg/include/Makefile.am, librdbg/src/Makefile.am.
  • librdbg/include/Makefile.am, librdbg/src/Makefile.am: Remove.
  • configure.ac: Reflect changes above. Unconditionally apply RTEMS_CHECK_MULTIPROCESSING.
  • wrapup/Makefile.am: Reflect changes above.
  • Makefile.am: Add DIST_SUBDIRS = @BSP_SUBDIRS@.
  • Property mode set to 100644
File size: 1.3 KB
Line 
1##
2##  $Id$
3##
4
5ACLOCAL_AMFLAGS = -I aclocal
6
7SUBDIRS = . @BSP_SUBDIRS@
8DIST_SUBDIRS = @BSP_SUBDIRS@
9
10clean-local:
11        $(RM) -r $(PROJECT_RELEASE)
12
13make/@RTEMS_BSP@.cache: make/bsp.mak @CUSTOM_CFG_FILES@
14        $(RM) make/@RTEMS_BSP@.cache
15        $(MAKE) -f ${srcdir}/make/bsp.mak \
16        'RTEMS_BSP=@RTEMS_BSP@' 'RTEMS_HOST=@RTEMS_HOST@' 'RTEMS_ROOT=.' 'BARE_CPU_MODEL=${BARE_CPU_MODEL}' \
17        make/@RTEMS_BSP@.cache
18
19noinst_DATA = make/@RTEMS_BSP@.cache
20DISTCLEANFILES = make/@RTEMS_BSP@.cache
21
22rtems_makedir = $(prefix)/make
23rtems_make_customdir = $(rtems_makedir)/custom
24rtems_make_custom_DATA = @CUSTOM_CFG_FILES@
25DISTCLEANFILES += @CUSTOM_CFG_FILES@
26
27make/custom/default.cfg: $(srcdir)/make/custom/default.cfg.in
28        cp $< $@
29
30make/custom/%.cfg: $(srcdir)/$(cfg_dir)/custom/%.cfg
31        cp $< $@
32
33noinst_DATA += make/custom/default.cfg
34DISTCLEANFILES += make/custom/default.cfg
35
36noinst_DATA += preinstall-stamp
37
38preinstall-stamp:
39        $(MAKE) $(AM_MAKEFLAGS) preinstall
40        touch preinstall-stamp
41CLEANFILES = preinstall-stamp
42
43@host_alias@-@RTEMS_BSP@.pc: config.status bsp.pc.in
44        ./config.status --file=$@:$(srcdir)/bsp.pc.in
45
46pkgconfigdir = $(prefix)/lib/pkgconfig
47pkgconfig_DATA = @host_alias@-@RTEMS_BSP@.pc
48DISTCLEANFILES += @host_alias@-@RTEMS_BSP@.pc
49
50include $(top_srcdir)/automake/subdirs.am
51include $(top_srcdir)/automake/local.am
Note: See TracBrowser for help on using the repository browser.