source: rtems/c/update-tools/Makefile.am @ 8cdb582

4.104.114.84.95
Last change on this file since 8cdb582 was 8cdb582, checked in by Joel Sherrill <joel.sherrill@…>, on 04/12/99 at 15:41:33

Patch from Ralf Corsepius <corsepiu@…>:

This patch addresses a few minor issues and contains a few (minor)
preparations for automake.

  • configure.in: Fix for handing c/src/tests subdirectory handling (FIX)
  • aclocal/rtems-top.m4: + Add TARGET_SUBDIR and --with-target-subdir (preparation of future

enhancements for cross-compiling)

+ Activate RTEMS_ROOT handling (automake preparation)

  • automake/*.am: replace comments "#" with "##" so that comments won't get included into Makefile.in's anymore
  • c/update-tools/* automake support (NEW)
  • ./autogen update/enhancement (cf. ./autogen for details)

After applying this patch please run:

./autogen
cvs add c/update-tools/configure.in
cvs add c/update-tools/Makefile.am
cvs add c/update-tools/aclocal.m4

  • Property mode set to 100644
File size: 913 bytes
Line 
1#
2# $Id$
3#
4
5AUTOMAKE_OPTIONS = foreign 1.4
6ACLOCAL = @ACLOCAL@ -I $(RTEMS_TOPdir)/aclocal
7# NOTE: It doesn't make much sense to install these files
8
9CLEANFILES = update word-replace
10
11if PERL
12# All files in this directory depend on having perl.
13# Do not handle them if perl is missing.
14
15noinst_SCRIPTS = \
16acpolish \
17ampolish \
18cipolish \
19rtems-polish.sh \
20word-replace \
21update
22
23noinst_DATA = \
24310_to_320_list
25
26update: $(srcdir)/update.in $(top_builddir)/config.status
27        @cd $(top_builddir) \
28         && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status; \
29        chmod 755 $@
30       
31word-replace: $(srcdir)/word-replace.in $(top_builddir)/config.status
32        @cd $(top_builddir) \
33         && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status; \
34        chmod 755 $@
35
36endif
37
38EXTRA_DIST = \
39310_to_320_list \
40update.in \
41word-replace.in \
42acpolish \
43ampolish \
44cipolish \
45rtems-polish.sh
46
47include $(top_srcdir)/../../automake/local.am
Note: See TracBrowser for help on using the repository browser.