summaryrefslogtreecommitdiffstats
path: root/tools/cpu/sh/configure.ac
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2018-06-06 16:21:22 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2018-06-11 14:47:32 +0200
commit8c62cf4209b2fe57fdbc3a138f2c644e19774367 (patch)
tree1b2ccf4bb0f27934d31cd856c48994a295ffdd0c /tools/cpu/sh/configure.ac
parentbuild: Force warnings (diff)
downloadrtems-8c62cf4209b2fe57fdbc3a138f2c644e19774367.tar.bz2
tools: Remove shgen
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, the shgen tool is GPL licensed. Remove all uses of this tool from the code base. Replace generated files with stub functions. If users of this BSP still exist, they can reimplement the functionality using a BSD-style license. Close #3443.
Diffstat (limited to '')
-rw-r--r--tools/cpu/sh/configure.ac25
1 files changed, 0 insertions, 25 deletions
diff --git a/tools/cpu/sh/configure.ac b/tools/cpu/sh/configure.ac
deleted file mode 100644
index fd368e6001..0000000000
--- a/tools/cpu/sh/configure.ac
+++ /dev/null
@@ -1,25 +0,0 @@
-## Process this file with autoconf to produce a configure script.
-
-AC_PREREQ([2.69])
-AC_INIT([rtems-tools-cpu-sh],[_RTEMS_VERSION],[https://devel.rtems.org/newticket])
-AC_CONFIG_SRCDIR([shgen.c])
-RTEMS_TOP(../../..)
-RTEMS_SOURCE_TOP
-RTEMS_BUILD_TOP
-
-RTEMS_CANONICAL_TARGET_CPU
-
-AM_INIT_AUTOMAKE([foreign subdir-objects 1.12.2])
-AM_MAINTAINER_MODE
-
-AC_PROG_CC
-AC_CHECK_LIB(m,fabs)
-AC_CHECK_FUNCS(getopt_long)
-AC_CHECK_PROGS(HELP2MAN,help2man)
-AM_CONDITIONAL(HELP2MAN,test -n "$HELP2MAN" )
-
-RTEMS_TOOLPATHS
-
-# Explicitly list all Makefiles here
-AC_CONFIG_FILES([Makefile])
-AC_OUTPUT