summaryrefslogtreecommitdiff
path: root/Makefile.config.in
Commit message (Collapse)AuthorAge
* Fix typo in makefile variable name that prevents zlib from being recognizedReid Spencer2004-10-04
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16656 91177308-0d34-0410-b5e6-96231b3b80d8
* Provide support for auto-detection and use of compression libraries.Reid Spencer2004-10-04
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16643 91177308-0d34-0410-b5e6-96231b3b80d8
* PAPI is not used here.Brian Gaeke2004-09-07
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16236 91177308-0d34-0410-b5e6-96231b3b80d8
* Remove variables and tests that were specific to the now defunctReid Spencer2004-09-07
| | | | | | | | test/Programs. These have been moved to llvm-test/autoconf/configure.ac and llvm-test/Makefile.config.in git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16231 91177308-0d34-0410-b5e6-96231b3b80d8
* Set a variable so that we can find the python interpreter.John Criswell2004-08-02
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15424 91177308-0d34-0410-b5e6-96231b3b80d8
* Since the Great LLVM Tool Renaming(tm), we no longer have collisions between ourMisha Brukman2004-06-17
| | | | | | | assembler/linker and the system equivalents. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14197 91177308-0d34-0410-b5e6-96231b3b80d8
* Added the EXEEXT variable so that Makefiles can figure out what extensionJohn Criswell2004-06-01
| | | | | | | to put on executable files. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13925 91177308-0d34-0410-b5e6-96231b3b80d8
* Standardize header comments of top-level Makefiles.Misha Brukman2004-04-24
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13143 91177308-0d34-0410-b5e6-96231b3b80d8
* Fix up a seriously outdated comment.Brian Gaeke2004-03-10
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12267 91177308-0d34-0410-b5e6-96231b3b80d8
* Fix typo. I wonder how this actually worked.Alkis Evlogimenos2004-02-25
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11854 91177308-0d34-0410-b5e6-96231b3b80d8
* Complete the SPEC_ROOT and USE_SPEC to SPEC2000_ROOT and USE_SPEC200 rename.Alkis Evlogimenos2004-02-25
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11853 91177308-0d34-0410-b5e6-96231b3b80d8
* Added the POVRAY_ROOT to locate Povray.John Criswell2004-02-20
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11681 91177308-0d34-0410-b5e6-96231b3b80d8
* Added check for target machine endian-ness and put the result intoJohn Criswell2004-02-13
| | | | | | | Makefile.config (ENDIAN variable is set to big or little). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11398 91177308-0d34-0410-b5e6-96231b3b80d8
* Added support for configuring SPEC95.John Criswell2004-02-10
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11295 91177308-0d34-0410-b5e6-96231b3b80d8
* Move bytecode_libdir def'n to Makefile.config.in from Makefile.rules, so itBrian Gaeke2004-01-22
| | | | | | | | | lives near the other installation dirs (like libdir, bindir, etc.). Move the rule for making bytecode_libdir out of the ifdef LIBRARYNAME...endif. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10964 91177308-0d34-0410-b5e6-96231b3b80d8
* Get autoconf'd ETAGSFLAGS value from configure.Brian Gaeke2004-01-22
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10961 91177308-0d34-0410-b5e6-96231b3b80d8
* Get SHLIBEXT variable from configure script.Brian Gaeke2004-01-21
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10933 91177308-0d34-0410-b5e6-96231b3b80d8
* Remove some whitespace and fix up some comments.Brian Gaeke2004-01-16
| | | | | | | Take settings of LCC and LCC1XX from configure. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10902 91177308-0d34-0410-b5e6-96231b3b80d8
* Remove and/or shorten many comments in configure.ac.Brian Gaeke2004-01-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | Remove checks for many common Unix programs. Our build process currently assumes they are there and makes no provisions for any other world-views. (We can add some of these checks back at some later time if it should prove useful, but right now, we do not need to check to see whether "rm" exists.) Remove checks for many common standard C headers and functions. We assume ISO/ANSI C++, and we always use the <cfoo> versions of ANSI C's <foo.h> headers, so these checks will not help anything. Edit configure's warning messages for clarity and content. Change checks for "optional" programs to default to using "true" instead of "false", so that a failure to find, e.g., etags, will be less likely to result in make failing. No longer shall we check for --enable-purify or --with-purify options. No longer shall we propagate these to the Makefiles. configure regenerated using autoconf-2.57. Please feel free to send me any questions or comments you have. :-) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10814 91177308-0d34-0410-b5e6-96231b3b80d8
* The configure script now defines BISON as the name of the bison program andJohn Criswell2004-01-12
| | | | | | | | | YACC as bison -y. In this way, we ensure that bison is being used, but the Makefiles have macros for using bison itself and for getting bison to act like it is traditional yacc. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10774 91177308-0d34-0410-b5e6-96231b3b80d8
* Add installation directories and commands, standardly provided by configure.Brian Gaeke2003-12-10
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10350 91177308-0d34-0410-b5e6-96231b3b80d8
* Fixed SPEC so that it would run correctly with the new autoconf-style objectJohn Criswell2003-09-11
| | | | | | | | | | | directory. Added Makefile.spec to the list of files to copy to the object directory. Moved the configuration of $SourceDir to Makefile.config and corrected the conditional that surrounds it. This allows SPEC to reset it and get the correct VPATH. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8475 91177308-0d34-0410-b5e6-96231b3b80d8
* Checkin of autoconf-style object root.John Criswell2003-09-06
| | | | | | | | | | | | Moved Makefile.common to Makefile.rules. This makes project Makefiles easier to support, and allows for easier overriding of default configuration values that used to be in Makefile.common. Modified Makefile.config.in to determine paths for directories (like LLVM_SRC_ROOT) and to use the pwd binary as opposed to the shell builtin (this works better for symbolic links). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8377 91177308-0d34-0410-b5e6-96231b3b80d8
* Updated to use files within the autoconf subdirectory.John Criswell2003-07-22
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7234 91177308-0d34-0410-b5e6-96231b3b80d8
* The word `open' was really intended to be `option'.Misha Brukman2003-07-02
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7080 91177308-0d34-0410-b5e6-96231b3b80d8
* Removed the --enable-profiling option.John Criswell2003-07-02
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7079 91177308-0d34-0410-b5e6-96231b3b80d8
* Removed the CPPFLAGS and CFLAGS variables since the -DHAVE_CONFIG_H messesJohn Criswell2003-07-02
| | | | | | | | up the test suite. Since all the LLVM software assumes that config.h exists, we can just do away with it for now. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7069 91177308-0d34-0410-b5e6-96231b3b80d8
* Added the ARCH variable so that some of the Makefiles can perform actions basedJohn Criswell2003-07-01
| | | | | | | upon the target hardware architecture (as opposed to always checking the OS). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7050 91177308-0d34-0410-b5e6-96231b3b80d8
* The Makefile now adds autoconf information to the compiler and linker flagJohn Criswell2003-07-01
| | | | | | | | variables instead of overwriting those variables. This makes it more flexible and keeps some of the test Makefiles from breaking. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7025 91177308-0d34-0410-b5e6-96231b3b80d8
* Fix verbose support bugChris Lattner2003-06-30
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7023 91177308-0d34-0410-b5e6-96231b3b80d8
* Removed the LIBS environment variable as it interferes with the tests andJohn Criswell2003-06-30
| | | | | | | is currently unused. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7022 91177308-0d34-0410-b5e6-96231b3b80d8
* Merged in autoconf branch. This provides configuration via the autoconfJohn Criswell2003-06-30
system. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7014 91177308-0d34-0410-b5e6-96231b3b80d8