summaryrefslogtreecommitdiffstats
path: root/c/src/make (follow)
Commit message (Collapse)AuthorAgeFilesLines
* build: Remove old build systemSebastian Huber2021-09-2114-1137/+0
| | | | | Close #3250. Close #4081.
* Makefile.am: Remove legacy networking filesVijay Kumar Banerjee2021-04-261-2/+0
|
* Makefile.inc: Add support for staged builds.Chris Johns2019-07-192-6/+10
| | | | | | | | | | | | | - Allow the RTEMS_ROOT to be conditionally supplied. This can be a staging area before being moved to the final install prefix location. - Update the default.cfg to use RTEMS_ROOT and to not rely on the exec_prefix so it's paths can be staged. - Fix and add the needed configure subs. Closes #3768
* build: Remove local.amSebastian Huber2018-10-101-1/+0
|
* tools: Remove install-if-change programSebastian Huber2018-06-152-20/+7
| | | | | | | | | | | | | | | | | | | | | | | | The last installed tool in RTEMS repository is the install-if-change script. It is not used to build/install BSPs. This script does the same as the standard "install" program with an additional feature to install variants via the -V command line option. This script is used by the standard Makefile support: c/src/make/host.cfg.in:INSTALL_CHANGE=$(PROJECT_BIN)/install-if-change The INSTALL_CHANGE is used by: c/src/make/host.cfg.in:ifndef INSTALL_CHANGE c/src/make/host.cfg.in:INSTALL_CHANGE=$(PROJECT_BIN)/install-if-change c/src/make/host.cfg.in:INSTALL_VARIANT=$(INSTALL_CHANGE) -V "$(LIB_VARIANT)" Remove the support for variant installation and instead use the standard "install" program. This breaks application Makefiles using the standard Makefile support of RTEMS. Close #3455.
* make: Remove obsolete AC_SUBST()Sebastian Huber2018-06-151-4/+0
|
* make: Remove CFLAGS_DEBUG_OPTIMIZE_VSebastian Huber2018-06-151-4/+0
| | | | Do not document CFLAGS_DEBUG_OPTIMIZE_V, since this flag is not used.
* tools: Remove packhexSebastian Huber2018-06-151-3/+0
| | | | | | | | | | | | 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.
* tools: Remove rtems-bin2cSebastian Huber2018-06-141-1/+1
| | | | | | This tool is now included in the RTEMS tools repository. Close #3380.
* configure: Add subdir-objects to all automake flags.Chris Johns2018-04-111-1/+1
| | | | | | | | | | | This option silences warning with automake-1.16.1 allowing us to upgrade to that version. This change has been tested with automake-1.12.6 and automake-1.16.1. It seems version 1.16.1 configures slower than 1.12.6 for the same source and BSP. The newer versions is 6 second slower. Close #3387.
* build: Remove EXTRA_DISTSebastian Huber2018-04-041-1/+0
| | | | | A "make dist" is not supported. So, it makes no sense to have pure "make dist" related stuff in the Makefile.am.
* Remove make preinstallChris Johns2018-01-251-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A speciality of the RTEMS build system was the make preinstall step. It copied header files from arbitrary locations into the build tree. The header files were included via the -Bsome/build/tree/path GCC command line option. This has at least seven problems: * The make preinstall step itself needs time and disk space. * Errors in header files show up in the build tree copy. This makes it hard for editors to open the right file to fix the error. * There is no clear relationship between source and build tree header files. This makes an audit of the build process difficult. * The visibility of all header files in the build tree makes it difficult to enforce API barriers. For example it is discouraged to use BSP-specifics in the cpukit. * An introduction of a new build system is difficult. * Include paths specified by the -B option are system headers. This may suppress warnings. * The parallel build had sporadic failures on some hosts. This patch removes the make preinstall step. All installed header files are moved to dedicated include directories in the source tree. Let @RTEMS_CPU@ be the target architecture, e.g. arm, powerpc, sparc, etc. Let @RTEMS_BSP_FAMILIY@ be a BSP family base directory, e.g. erc32, imx, qoriq, etc. The new cpukit include directories are: * cpukit/include * cpukit/score/cpu/@RTEMS_CPU@/include * cpukit/libnetworking The new BSP include directories are: * bsps/include * bsps/@RTEMS_CPU@/include * bsps/@RTEMS_CPU@/@RTEMS_BSP_FAMILIY@/include There are build tree include directories for generated files. The include directory order favours the most general header file, e.g. it is not possible to override general header files via the include path order. The "bootstrap -p" option was removed. The new "bootstrap -H" option should be used to regenerate the "headers.am" files. Update #3254.
* DRVMGR: added driver manager to cpukit/libdrvmgrDaniel Hellstrom2015-04-171-0/+1
|
* Update bug report URLSebastian Huber2014-12-051-1/+1
|
* Use $(EXEEXT) [defaults to "exe"] to generate binariesNick Withers2013-08-091-5/+2
|
* make: Use C flags for C++ as defaultSebastian Huber2013-06-291-2/+2
| | | | | In case a BSP selects special CFLAGS_OPTIMIZE_V flags then they will be also used for CXXFLAGS_OPTIMIZE_V automatically for example.
* RTEMS: Delete ChangeLog files.Gedare Bloom2013-03-081-399/+0
| | | | | | | | | This commit deletes all RTEMS ChangeLog files. These files have been abandoned since converting to git version control. The historical data may be recovered by checking out any commit before this one. Most of the contents of these ChangeLog files can also be found in the git log. Two external ChangeLog files, ChangeLog.slac and ChangeLog.zlib, remain.
* make: Add default flagsSebastian Huber2013-02-131-7/+4
|
* make: Add CPPFLAGSSebastian Huber2013-02-131-0/+2
|
* make: Remove -Wno-unused flag for debug variantSebastian Huber2013-02-131-1/+1
|
* make: Remove -g flagsSebastian Huber2013-02-131-3/+3
| | | | The -g flag is set by the BSP.
* make: Remove -qrtems_debug flag usageSebastian Huber2013-02-131-3/+3
|
* Require automake-1.12.2.Ralf Corsépius2012-07-191-1/+1
|
* Require autoconf-2.69.Ralf Corsépius2012-07-191-1/+1
|
* Remove CVS Id Strings (manual edits after script)Joel Sherrill2012-05-111-2/+0
| | | | | | These modifications were required by hand after running the script. In some cases, the file names did not match patterns. In others, the format of the file did not match any common patterns.
* Remove All CVS Id Strings Possible Using a ScriptJoel Sherrill2012-05-1111-32/+0
| | | | | | | | | | | | Script does what is expected and tries to do it as smartly as possible. + remove occurrences of two blank comment lines next to each other after Id string line removed. + remove entire comment blocks which only exited to contain CVS Ids + If the processing left a blank line at the top of a file, it was removed.
* Revert: Remove CVS IdsJoel Sherrill2012-05-073-0/+9
| | | | | See http://www.rtems.org/pipermail/rtems-devel/2012-May/001006.html for details.
* Remove CVS-Ids.Ralf Corsépius2012-05-043-9/+0
|
* Remove all .cvsignore files.Joel Sherrill2012-02-012-19/+0
|
* Revert "Support custom Makefiles."Sebastian Huber2012-01-263-61/+1
| | | | This reverts commit 621e1c9b74272ff94efec749c6c4a673a7c315e8.
* Support custom Makefiles.Sebastian Huber2012-01-233-1/+61
|
* 2011-12-08 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2011-12-084-55/+7
| | | | | | PR 1589/build * leaf.cfg, target.cfg.in, compilers/gcc-target-default.cfg: Remove obsolete optional manager capability.
* 2011-06-16 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2011-06-162-5/+4
| | | | * Makefile.am: Don't generate host.cfg.in.
* 2011-04-01 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2011-04-015-0/+12
| | | | | * Makefile.am, Makefile.inc.in, configure.ac, target.cfg.in: Update to account for movement of .cfg files.
* 2011-03-29 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2011-03-292-41/+45
| | | | * Makefile.am: Use '|' as sed-delimiter.
* 2011-03-08 Joel Sherrill <joel.sherrilL@OARcorp.com>Joel Sherrill2011-03-092-2/+7
| | | | | PR 1760/misc * compilers/gcc-target-default.cfg: Fix typo in CPP definition.
* 2011-03-08 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2011-03-082-5/+9
| | | | | * Makefile.inc.in: Fix PROJECT_ROOT to match usage in templates and existing Makefiles.
* 2011-03-07 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2011-03-073-4/+67
| | | | * Makefile.am, configure.ac: Move file generation into Makefile.
* 2011-03-07 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2011-03-072-1/+5
| | | | * Makefile.inc.in: Set PROJECT_ROOT = @pkgdatadir@.
* 2011-03-07 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2011-03-072-1/+5
| | | | * Makefile.am: Install *.cfgs into $(pkgdatadir)/make.
* 2011-03-07 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2011-03-072-2/+5
| | | | | PR 1753/misc: * host.cfg.in: Remove RTEMS_HOST.
* 2011-03-05 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2011-03-052-5/+5
| | | | | PR 1754/misc: * host.cfg.in: Remove GCCSED.
* 2011-02-02 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2011-02-022-2/+6
| | | | * configure.ac: Require autoconf-2.68, automake-1.11.1.
* 2010-07-27 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2010-07-272-0/+10
| | | | | | PR 1532/testing * host.cfg.in: Add initial tests for untar capabilities. This required BIN2C.
* 2010-06-17 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2010-06-177-55/+9
| | | | | | * Makefile.inc.in, bsp.cfg.in, configure.ac, target.cfg.in: Remove itron. * aclocal/check-itron.m4, aclocal/enable-itron.m4: Remove.
* Whitespace removal.Ralf Corsepius2009-11-281-3/+3
|
* 2009-10-21 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-10-212-4/+7
| | | | * bsp.mak: Remove RTEMS_BSP_FAMILY.
* Remove BARE_CPU_MODEL, BARE_CPU_CFLAGS.Ralf Corsepius2009-10-161-2/+0
|
* 2009-10-16 Ralf Corsepius <ralf.corsepius@rtems.org>Ralf Corsepius2009-10-161-0/+4
| | | | * configure.ac: Remove BARE_CPU_MODEL, BARE_CPU_CFLAGS.
* 2009-10-16 Ralf Corsepius <ralf.corsepius@rtems.org>Ralf Corsepius2009-10-161-0/+6
| | | | | | * aclocal/enable-bare.m4: Remove (Abandoned). * bsp.cfg.in: Remove BARE_CPU_MODEL, BARE_CPU_CFLAGS. * configure.ac: Remove RTEMS_ENABLE_BARE.