aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.rules
Commit message (Collapse)AuthorAgeFilesLines
* Fix grammarMisha Brukman2004-10-111-1/+1
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16910 91177308-0d34-0410-b5e6-96231b3b80d8
* Don't add libz or libbz2 to the USEDLIBS lists, those are for LLVM libraries.Chris Lattner2004-10-071-2/+2
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16798 91177308-0d34-0410-b5e6-96231b3b80d8
* Provide support for auto-detection and use of compression libraries.Reid Spencer2004-10-041-6/+14
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16643 91177308-0d34-0410-b5e6-96231b3b80d8
* Corrected spelling of Makefile variable, thereby re-enabling profileJohn Criswell2004-09-281-1/+1
| | | | | | | builds for projects. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16540 91177308-0d34-0410-b5e6-96231b3b80d8
* Missed one $*.a -> $@ conversion for the Release build.Reid Spencer2004-09-231-1/+1
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16494 91177308-0d34-0410-b5e6-96231b3b80d8
* Correct the rules for making shared libraries per libtool 1.5.10Reid Spencer2004-09-231-9/+10
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16489 91177308-0d34-0410-b5e6-96231b3b80d8
* libtool's name is now back to mklib.Reid Spencer2004-09-201-1/+1
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16423 91177308-0d34-0410-b5e6-96231b3b80d8
* Add dependencies so that project tools are recompiled if LLVM librariesJohn Criswell2004-09-161-3/+8
| | | | | | | are updated. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16378 91177308-0d34-0410-b5e6-96231b3b80d8
* Use libtool, not mklib (which somehow doesn't get generated anymore)Brian Gaeke2004-09-071-1/+1
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16243 91177308-0d34-0410-b5e6-96231b3b80d8
* Add LLVMC as a supported tool.Reid Spencer2004-09-051-0/+1
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16183 91177308-0d34-0410-b5e6-96231b3b80d8
* Get rid of an un-needed and un-used GCCism. ATTR_DEPRECATED is used nowhereReid Spencer2004-09-031-3/+0
| | | | | | | in the LLVM source base. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16162 91177308-0d34-0410-b5e6-96231b3b80d8
* Remove even the slightest chance of a race condition occurring :)Reid Spencer2004-08-201-2/+2
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15951 91177308-0d34-0410-b5e6-96231b3b80d8
* Added a set of rules for installing configuration files. You can now sayReid Spencer2004-08-201-0/+16
| | | | | | | | | CONFIG_FILES=a b c in a Makefile and when you "make install" the files a b and c will get installed into the $prefix/etc directory. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15948 91177308-0d34-0410-b5e6-96231b3b80d8
* * Uncomment rule for location of LLI (formerly commented out: typo?)Misha Brukman2004-07-211-10/+11
| | | | | | | * Add space between VAR and `=' git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15074 91177308-0d34-0410-b5e6-96231b3b80d8
* Move LLVM tool definitions to Makefile.rulesBrian Gaeke2004-07-211-2/+15
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15049 91177308-0d34-0410-b5e6-96231b3b80d8
* Really, it is not necessary to recompile all files in a profile build everyChris Lattner2004-07-081-0/+1
| | | | | | | time! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14680 91177308-0d34-0410-b5e6-96231b3b80d8
* Explicitly specify libtool tag "CXX" so that if you setenv CXX to somethingBrian Gaeke2004-06-081-3/+3
| | | | | | | | libtool can't parse, e.g., "/path/to/g++ -some-funny-options", then it will still be able to compile and link. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14072 91177308-0d34-0410-b5e6-96231b3b80d8
* Make tool names end with .exe on windows. This isn't needed to run theChris Lattner2004-06-011-4/+4
| | | | | | | | | tools, but is required for rules that depend on the executables, e.g.: a: b $(LLVMAS) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13926 91177308-0d34-0410-b5e6-96231b3b80d8
* Pass the Makefile flags to recursive makes in {PARALLEL,OPTIONAL}_DIRS targets.Misha Brukman2004-05-211-2/+2
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13623 91177308-0d34-0410-b5e6-96231b3b80d8
* Pass given flags on to recursive sub-makes.Misha Brukman2004-05-211-1/+1
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13616 91177308-0d34-0410-b5e6-96231b3b80d8
* Change DEPRECATED macro to ATTR_DEPRECATED as this conflicts with someAlkis Evlogimenos2004-05-201-1/+1
| | | | | | | java constants. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13611 91177308-0d34-0410-b5e6-96231b3b80d8
* Standardize header comments of top-level Makefiles.Misha Brukman2004-04-241-3/+3
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13143 91177308-0d34-0410-b5e6-96231b3b80d8
* Add support for 'install-bytecode' target, used for ONLY installingBrian Gaeke2004-03-101-3/+8
| | | | | | | bytecode-libs. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12268 91177308-0d34-0410-b5e6-96231b3b80d8
* Define DEPRECATED so that it can be used in function and variableAlkis Evlogimenos2004-02-131-0/+3
| | | | | | | declarations. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11391 91177308-0d34-0410-b5e6-96231b3b80d8
* Fix bug in installation process: MKDIR must respect DESTDIR.Brian Gaeke2004-02-091-4/+4
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11236 91177308-0d34-0410-b5e6-96231b3b80d8
* Always replace instead of appending when creating archive files. It may beBrian Gaeke2004-02-041-1/+1
| | | | | | | | slightly slower, but I think we can handle it, especially if it means BytecodeLibs are correctly regenerated. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11122 91177308-0d34-0410-b5e6-96231b3b80d8
* Move bytecode_libdir def'n to Makefile.config.in from Makefile.rules, so itBrian Gaeke2004-01-221-4/+5
| | | | | | | | | 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
* Move support for building tags database from Makefile.rules to Makefile, becauseBrian Gaeke2004-01-221-17/+0
| | | | | | | it's only used in the top-level directory. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10960 91177308-0d34-0410-b5e6-96231b3b80d8
* Give the ".../llvm-gcc/bytecode-libs" directory a variable of its own,Brian Gaeke2004-01-211-2/+6
| | | | | | | | | called bytecode_libdir. Make install-bytecode-library depend on the existence of that directory, and add a rule for creating it if it does not exist by calling mkinstalldirs. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10946 91177308-0d34-0410-b5e6-96231b3b80d8
* Add DESTDIR support for installation, to support RPM etc.Brian Gaeke2004-01-211-6/+6
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10940 91177308-0d34-0410-b5e6-96231b3b80d8
* Maybe Misha isn't so buggy after all. He caught the rest of my huge thinkoBrian Gaeke2004-01-211-5/+5
| | | | | | | | | w.r.t. SHLIBEXT starting with a dot. :-) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10939 91177308-0d34-0410-b5e6-96231b3b80d8
* Remember, SHLIBEXT begins with a period.Brian Gaeke2004-01-211-1/+1
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10936 91177308-0d34-0410-b5e6-96231b3b80d8
* Modified version of patch from mkahl@apple.com to stop hardcoding ".so".Brian Gaeke2004-01-211-7/+10
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10935 91177308-0d34-0410-b5e6-96231b3b80d8
* Take settings of LCC and LCC1XX from configure.Brian Gaeke2004-01-161-2/+0
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10899 91177308-0d34-0410-b5e6-96231b3b80d8
* I'm fairly certain this was just a typo.Brian Gaeke2004-01-161-1/+1
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10897 91177308-0d34-0410-b5e6-96231b3b80d8
* Allow C++ programs to end in .cc. This allows C++ test programs in theJohn Criswell2003-12-291-1/+2
| | | | | | | test suite to compile. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10644 91177308-0d34-0410-b5e6-96231b3b80d8
* Add install target for libraries.Brian Gaeke2003-12-181-6/+24
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10519 91177308-0d34-0410-b5e6-96231b3b80d8
* Add support for installing tool executables.Brian Gaeke2003-12-101-4/+4
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10351 91177308-0d34-0410-b5e6-96231b3b80d8
* Stop using the -fshort-enum compile optionChris Lattner2003-12-061-4/+3
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10296 91177308-0d34-0410-b5e6-96231b3b80d8
* Make stripped-bytecode a recursive targetChris Lattner2003-12-011-3/+4
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10283 91177308-0d34-0410-b5e6-96231b3b80d8
* Simplify some rulesChris Lattner2003-11-291-8/+8
| | | | | | | Move LGCCLDPROG from test/Makefile.tests git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10256 91177308-0d34-0410-b5e6-96231b3b80d8
* All directory targets now install the Makefile only if it is missing.John Criswell2003-11-251-3/+9
| | | | | | | | | | Directory targets no longer check for existance of the directory in the object tree; if the Makefile doesn't exist, we will re-create the directory. This seems to be a pretty good assumption and saves us from checking directory existance each time. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10211 91177308-0d34-0410-b5e6-96231b3b80d8
* Added a pseudo-hack: The Makefile now copies Makefiles from source tree toJohn Criswell2003-11-251-2/+12
| | | | | | | | | object tree if it is missing. This means that new Makefiles should get picked up automagically, requiring less bothersome re-configuring after updates. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10209 91177308-0d34-0410-b5e6-96231b3b80d8
* Modified directory building rules so that using the cd program/alias isJohn Criswell2003-11-241-3/+3
| | | | | | | not necessary. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10199 91177308-0d34-0410-b5e6-96231b3b80d8
* Shorten the "updating Makefile" status print-out.Misha Brukman2003-11-111-1/+1
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9874 91177308-0d34-0410-b5e6-96231b3b80d8
* If the source tree's Makefile is more up-to-date, copy it over into the buildMisha Brukman2003-11-091-0/+6
| | | | | | | tree. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9836 91177308-0d34-0410-b5e6-96231b3b80d8
* Fix broken makefile dependency generationChris Lattner2003-11-081-2/+2
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9810 91177308-0d34-0410-b5e6-96231b3b80d8
* Fix a really bad build problem for users who have .o in their build directory!Chris Lattner2003-11-071-2/+2
| | | | | | | Thanks to Reid Spencer for figuring this out! :) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9763 91177308-0d34-0410-b5e6-96231b3b80d8
* Output only the .y filename, not the full path to it for ease of reading.Misha Brukman2003-11-051-1/+1
| | | | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9729 91177308-0d34-0410-b5e6-96231b3b80d8
* Modified build rules so that a messages appears before and after linking.John Criswell2003-11-031-10/+20
| | | | | | | | | This helps to disambiguate when linking begins and when the library/program is linked and ready to be used. This is sort of as preference thing, so feel free to modify/revert the change. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9687 91177308-0d34-0410-b5e6-96231b3b80d8