source: rtems/c/src/lib/libbsp/sh/gensh2/configure.ac @ 8c62cf4

5
Last change on this file since 8c62cf4 was 8c62cf4, checked in by Sebastian Huber <sebastian.huber@…>, on 06/06/18 at 14:21:22

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.

  • Property mode set to 100644
File size: 917 bytes
Line 
1## Process this file with autoconf to produce a configure script.
2
3AC_PREREQ([2.69])
4AC_INIT([rtems-c-src-lib-libbsp-sh-gensh2],[_RTEMS_VERSION],[https://devel.rtems.org/newticket])
5RTEMS_TOP(../../../../../..)
6RTEMS_SOURCE_TOP
7RTEMS_BUILD_TOP
8RTEMS_BSP_LINKCMDS
9
10RTEMS_CANONICAL_TARGET_CPU
11AM_INIT_AUTOMAKE([no-define nostdinc foreign 1.12.2])
12RTEMS_BSP_CONFIGURE
13
14
15## bsp-specific options
16AC_DEFINE(CPU_CLOCK_RATE_HZ, 29491200, [cpu clock rate in HZ])
17
18RTEMS_BSPOPTS_SET([START_HW_INIT],[*],[])
19RTEMS_BSPOPTS_HELP([START_HW_INIT],
20[If defined, selects whether 'early_hw_init()' is called from 'start.S';
21 'bsp_hw_init()' is always called from 'bspstart.c'])
22
23RTEMS_BSPOPTS_SET([STANDALONE_EVB],[*],[])
24RTEMS_BSPOPTS_HELP([STANDALONE_EVB],
25[If defined, compiles code to jump-start from FLASH, without a monitor])
26
27RTEMS_BSP_CLEANUP_OPTIONS
28
29# Explicitly list all Makefiles here
30AC_CONFIG_FILES([Makefile])
31AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.