source: rtems/c/build-tools/Makefile.am @ a5d697dc

4.104.114.84.95
Last change on this file since a5d697dc was b6529a3, checked in by Joel Sherrill <joel.sherrill@…>, on 04/19/99 at 13:35:24

Patch from Ralf Corsepius <corsepiu@…> to reorganize
the build-tools layout to simplify it.

This script reorganizes and simpilfies the build-tools subdirectories.
It moves all source-files and scripts to c/build-tools/. This will
enable use to use this directory directly to refer to the build-tools
instead of copying them around in a "preinstall" step in future.
However, RTEMS's autoconf Makefile.ins and *.cfg files are not yet
prepared to apply this approach and therefore require additional work.

  • Property mode set to 100644
File size: 797 bytes
Line 
1#
2# $Id$
3#
4
5AUTOMAKE_OPTIONS = foreign
6ACLOCAL = @ACLOCAL@ -I $(RTEMS_TOPdir)/aclocal
7
8bin_PROGRAMS=cklength eolstrip packhex unhex
9
10cklength_SOURCES = cklength.c
11eolstrip_SOURCES = eolstrip.c
12packhex_SOURCES  = packhex.c
13unhex_SOURCES    = unhex.c
14
15bin_SCRIPTS=\
16install-if-change \
17lock-directory \
18unlock-directory \
19rcs-clean
20
21noinst_SCRIPTS = search-id.sh
22
23#
24# HACK: Install to build directory
25#
26install-exec-local: $(bin_PROGRAMS) $(bin_SCRIPTS)
27        if test -n "${RTEMS_BSP}"; then \
28          $(mkinstalldirs) $(PROJECT_ROOT)/${RTEMS_BSP}/build-tools; \
29          $(INSTALL_SCRIPT) $(bin_SCRIPTS) $(PROJECT_ROOT)/${RTEMS_BSP}/build-tools; \
30          $(INSTALL_PROGRAM) $(bin_PROGRAMS) $(PROJECT_ROOT)/${RTEMS_BSP}/build-tools; \
31        fi
32
33preinstall: install-exec-local
34
35include $(top_srcdir)/../../automake/local.am
Note: See TracBrowser for help on using the repository browser.