mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-16 21:05:05 +08:00
All tools should be removed from the RTEMS source repository at some point in time. Tools with a BSD-style license will be moved to the RTEMS tools repository. Unfortunately, this tool has no license information. Remove all uses of this tool from the code base. Users of HEX files should consider to use ELF instead. Close #3379.
19 lines
448 B
Plaintext
19 lines
448 B
Plaintext
AC_PREREQ([2.69])
|
|
AC_INIT([rtems-tools-build],[_RTEMS_VERSION],[https://devel.rtems.org/newticket])
|
|
AC_CONFIG_SRCDIR([install-if-change.in])
|
|
RTEMS_TOP(../..)
|
|
RTEMS_SOURCE_TOP
|
|
RTEMS_BUILD_TOP
|
|
|
|
AC_CANONICAL_HOST
|
|
|
|
AM_INIT_AUTOMAKE([no-define foreign subdir-objects 1.12.2])
|
|
AM_MAINTAINER_MODE
|
|
|
|
RTEMS_PATH_KSH
|
|
|
|
# Explicitly list all Makefiles here
|
|
AC_CONFIG_FILES([Makefile])
|
|
AC_CONFIG_FILES([install-if-change],[chmod +x install-if-change])
|
|
AC_OUTPUT
|