source: rtems/Makefile.am @ b2b143f4

4.104.114.84.95
Last change on this file since b2b143f4 was 6e2ef53f, checked in by Ralf Corsepius <ralf.corsepius@…>, on 02/20/04 at 01:44:19

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

  • aclocal/rtems-top.m4: Sync with c/src/aclocal/rtems-top.m4
  • Makefile.am: Cosmetics.
  • Property mode set to 100644
File size: 1.8 KB
Line 
1#
2# top level directory for RTEMS build tree
3#
4##
5## $Id$
6##
7
8ACLOCAL_AMFLAGS = -I aclocal
9
10SUBDIRS = make $(build_SUBDIRS) $(host_SUBDIRS) $(target_SUBDIRS)
11DIST_SUBDIRS = $(SUBDIRS)
12
13ACLOCAL_FILES =
14ACLOCAL_FILES += aclocal/bsp-alias.m4
15ACLOCAL_FILES += aclocal/canonical-target-name.m4
16ACLOCAL_FILES += aclocal/check-bsps.m4
17ACLOCAL_FILES += aclocal/check-custom-bsp.m4
18ACLOCAL_FILES += aclocal/enable-bare.m4
19ACLOCAL_FILES += aclocal/path-ksh.m4
20ACLOCAL_FILES += aclocal/project-root.m4
21ACLOCAL_FILES += aclocal/quoting.m4
22ACLOCAL_FILES += aclocal/rtems-cpu-subdirs.m4
23ACLOCAL_FILES += aclocal/tool-paths.m4
24
25noinst_SCRIPTS = bootstrap
26
27EXTRA_DIST = README.configure SUPPORT VERSION LICENSE $(noinst_SCRIPTS)
28EXTRA_DIST += $(ACLOCAL_FILES)
29EXTRA_DIST += config-ml.in
30
31dist-hook:
32        @files=`(cd $(srcdir); find doc cpukit c scripts testsuites tools \
33           -name configure.ac -print | sed 's,/configure.ac,,' | sort)`; \
34        for i in $$files; do \
35          if test -f $(distdir)/$$i/configure.ac; then : ; \
36          else \
37            d=`dirname $(distdir)/$$i`; \
38            $(mkdir_p) $$d;\
39            echo "cp -pR $(srcdir)/$$i $(distdir)/$$i"; \
40            cp -pR $(srcdir)/$$i $(distdir)/$$i; \
41          fi; \
42        done
43        rm -f $(distdir)/scripts/setup.cache
44        rm -f $(distdir)/scripts/*/*.spec
45        rm -rf `find $(distdir) -name 'autom4te*'`
46        rm -rf `find $(distdir) -name CVS`
47        rm -f `find $(distdir) \( -name .cvsignore \
48          -o -name config.status \
49          -o -name config.log \)`
50        rm -f `find $(distdir) \( -name '*.bak' \
51          -o -name 'changes' -o -name 'diff' -o -name 'tmp' -o -name 'log' \
52          -o -name '*~' -o -name '.*~' -o -name '.#*' \)`
53        find $(distdir) -name '*.in' -print | while read a; do \
54          f=`echo $$a | sed 's,\.in$$,,'`; \
55          if test -f $$f; then echo "rm $$f"; rm $$f; fi; done
56
57include $(top_srcdir)/automake/subdirs.am
58include $(top_srcdir)/automake/host.am
Note: See TracBrowser for help on using the repository browser.