source: rtems/c/src/make/Makefile.am @ e1d8abb

4.104.114.84.95
Last change on this file since e1d8abb was f724a870, checked in by Joel Sherrill <joel.sherrill@…>, on 08/30/99 at 16:25:54

Patch from Ralf Corsepius <corsepiu@…>:

This patch addresses a few configuration issues and removes some
duplicate configuration files.

Background:

  • some files used in AC_INIT were not unique enough and can lead to problems if a user plays with configure scripts.
  • the Makefile templates are independent of the target/cpu and bsp, so the bsp dependent versions (c/src/make/Templates) are removed.

To apply:

patch -p1 < rtems-rc-19990820-3.diff
rm -f c/src/make/Templates
./autogen

ATTENTION: This patch removes several files and one directory :)

  • Property mode set to 100644
File size: 897 bytes
Line 
1#
2# $Id$
3#
4
5AUTOMAKE_OPTIONS = foreign 1.4
6ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal
7
8rtems_makedir=$(prefix)/make
9
10GENERIC_FILES = \
11host.cfg target.cfg
12
13MAKE_FILES = README \
14directory.cfg leaf.cfg \
15lib.cfg
16
17rtems_make_DATA = \
18$(MAKE_FILES) \
19$(GENERIC_FILES)
20
21noinst_DATA = \
22main.cfg
23
24rtemsdir = $(prefix)
25rtems_bspdir = $(rtemsdir)/@RTEMS_BSP@
26rtems_bsp_DATA = \
27Makefile.inc
28
29rtems_bsp_makedir = $(rtems_bspdir)/make
30rtems_bsp_make_DATA = \
31bsp.cfg
32
33if MAINTAINER_MODE
34$(srcdir)/main.cfg.in: $(top_srcdir)/@RTEMS_TOPdir@/make/main.cfg
35        sed -e 's%\$$(RTEMS_BSP)%\@RTEMS_BSP\@%g' < $< >$@
36
37$(srcdir)/host.cfg.in: $(top_srcdir)/@RTEMS_TOPdir@/make/host.cfg.in
38        cp $< $@
39
40$(srcdir)/target.cfg.in: $(top_srcdir)/@RTEMS_TOPdir@/make/target.cfg.in
41        cp $< $@
42endif
43
44SUBDIRS = compilers custom
45
46include $(top_srcdir)/../../../automake/subdirs.am
47include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.