aboutsummaryrefslogtreecommitdiff
path: root/Makefile.rules
AgeCommit message (Collapse)Author
2004-09-16Add dependencies so that project tools are recompiled if LLVM librariesJohn Criswell
are updated. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16378 91177308-0d34-0410-b5e6-96231b3b80d8
2004-09-07Use libtool, not mklib (which somehow doesn't get generated anymore)Brian Gaeke
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16243 91177308-0d34-0410-b5e6-96231b3b80d8
2004-09-05Add LLVMC as a supported tool.Reid Spencer
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16183 91177308-0d34-0410-b5e6-96231b3b80d8
2004-09-03Get rid of an un-needed and un-used GCCism. ATTR_DEPRECATED is used nowhereReid Spencer
in the LLVM source base. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16162 91177308-0d34-0410-b5e6-96231b3b80d8
2004-08-20Remove even the slightest chance of a race condition occurring :)Reid Spencer
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15951 91177308-0d34-0410-b5e6-96231b3b80d8
2004-08-20Added a set of rules for installing configuration files. You can now sayReid Spencer
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
2004-07-21* Uncomment rule for location of LLI (formerly commented out: typo?)Misha Brukman
* Add space between VAR and `=' git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15074 91177308-0d34-0410-b5e6-96231b3b80d8
2004-07-21Move LLVM tool definitions to Makefile.rulesBrian Gaeke
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15049 91177308-0d34-0410-b5e6-96231b3b80d8
2004-07-08Really, it is not necessary to recompile all files in a profile build everyChris Lattner
time! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14680 91177308-0d34-0410-b5e6-96231b3b80d8
2004-06-08Explicitly specify libtool tag "CXX" so that if you setenv CXX to somethingBrian Gaeke
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
2004-06-01Make tool names end with .exe on windows. This isn't needed to run theChris Lattner
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
2004-05-21Pass the Makefile flags to recursive makes in {PARALLEL,OPTIONAL}_DIRS targets.Misha Brukman
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13623 91177308-0d34-0410-b5e6-96231b3b80d8
2004-05-21Pass given flags on to recursive sub-makes.Misha Brukman
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13616 91177308-0d34-0410-b5e6-96231b3b80d8
2004-05-20Change DEPRECATED macro to ATTR_DEPRECATED as this conflicts with someAlkis Evlogimenos
java constants. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13611 91177308-0d34-0410-b5e6-96231b3b80d8
2004-04-24Standardize header comments of top-level Makefiles.Misha Brukman
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13143 91177308-0d34-0410-b5e6-96231b3b80d8
2004-03-10Add support for 'install-bytecode' target, used for ONLY installingBrian Gaeke
bytecode-libs. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12268 91177308-0d34-0410-b5e6-96231b3b80d8
2004-02-13Define DEPRECATED so that it can be used in function and variableAlkis Evlogimenos
declarations. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11391 91177308-0d34-0410-b5e6-96231b3b80d8
2004-02-09Fix bug in installation process: MKDIR must respect DESTDIR.Brian Gaeke
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11236 91177308-0d34-0410-b5e6-96231b3b80d8
2004-02-04Always replace instead of appending when creating archive files. It may beBrian Gaeke
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
2004-01-22Move bytecode_libdir def'n to Makefile.config.in from Makefile.rules, so itBrian Gaeke
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
2004-01-22Move support for building tags database from Makefile.rules to Makefile, becauseBrian Gaeke
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
2004-01-21Give the ".../llvm-gcc/bytecode-libs" directory a variable of its own,Brian Gaeke
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
2004-01-21Add DESTDIR support for installation, to support RPM etc.Brian Gaeke
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10940 91177308-0d34-0410-b5e6-96231b3b80d8
2004-01-21Maybe Misha isn't so buggy after all. He caught the rest of my huge thinkoBrian Gaeke
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
2004-01-21Remember, SHLIBEXT begins with a period.Brian Gaeke
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10936 91177308-0d34-0410-b5e6-96231b3b80d8
2004-01-21Modified version of patch from mkahl@apple.com to stop hardcoding ".so".Brian Gaeke
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10935 91177308-0d34-0410-b5e6-96231b3b80d8
2004-01-16Take settings of LCC and LCC1XX from configure.Brian Gaeke
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10899 91177308-0d34-0410-b5e6-96231b3b80d8
2004-01-16I'm fairly certain this was just a typo.Brian Gaeke
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10897 91177308-0d34-0410-b5e6-96231b3b80d8
2003-12-29Allow C++ programs to end in .cc. This allows C++ test programs in theJohn Criswell
test suite to compile. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10644 91177308-0d34-0410-b5e6-96231b3b80d8
2003-12-18Add install target for libraries.Brian Gaeke
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10519 91177308-0d34-0410-b5e6-96231b3b80d8
2003-12-10Add support for installing tool executables.Brian Gaeke
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10351 91177308-0d34-0410-b5e6-96231b3b80d8
2003-12-06Stop using the -fshort-enum compile optionChris Lattner
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10296 91177308-0d34-0410-b5e6-96231b3b80d8
2003-12-01Make stripped-bytecode a recursive targetChris Lattner
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10283 91177308-0d34-0410-b5e6-96231b3b80d8
2003-11-29Simplify some rulesChris Lattner
Move LGCCLDPROG from test/Makefile.tests git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10256 91177308-0d34-0410-b5e6-96231b3b80d8
2003-11-25All directory targets now install the Makefile only if it is missing.John Criswell
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
2003-11-25Added a pseudo-hack: The Makefile now copies Makefiles from source tree toJohn Criswell
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
2003-11-24Modified directory building rules so that using the cd program/alias isJohn Criswell
not necessary. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10199 91177308-0d34-0410-b5e6-96231b3b80d8
2003-11-11Shorten the "updating Makefile" status print-out.Misha Brukman
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9874 91177308-0d34-0410-b5e6-96231b3b80d8
2003-11-09If the source tree's Makefile is more up-to-date, copy it over into the buildMisha Brukman
tree. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9836 91177308-0d34-0410-b5e6-96231b3b80d8
2003-11-08Fix broken makefile dependency generationChris Lattner
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9810 91177308-0d34-0410-b5e6-96231b3b80d8
2003-11-07Fix a really bad build problem for users who have .o in their build directory!Chris Lattner
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
2003-11-05Output only the .y filename, not the full path to it for ease of reading.Misha Brukman
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9729 91177308-0d34-0410-b5e6-96231b3b80d8
2003-11-03Modified build rules so that a messages appears before and after linking.John Criswell
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
2003-10-29Fixed LinkO, LinkP error in TOOLLINKOPTSBDinakar Dhurjati
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9591 91177308-0d34-0410-b5e6-96231b3b80d8
2003-10-29Added TOOLLINKOPTSB to pass options to the linker (e.g. adding searchDinakar Dhurjati
path for external libraries). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9582 91177308-0d34-0410-b5e6-96231b3b80d8
2003-10-28Add __STDC_LIMIT_MACROS here.Brian Gaeke
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9549 91177308-0d34-0410-b5e6-96231b3b80d8
2003-10-21When linking the runtime libraries, do not link -lc and -lgcc into the librariesChris Lattner
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9339 91177308-0d34-0410-b5e6-96231b3b80d8
2003-10-21Added LLVM copyright notice.John Criswell
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9319 91177308-0d34-0410-b5e6-96231b3b80d8
2003-10-16Added autoconf support for the sample project.John Criswell
Fixed the header comment in Makefile.rules Changed all references to the echo program in Makefile.rules to the value found by autoconf. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9151 91177308-0d34-0410-b5e6-96231b3b80d8
2003-10-10Print out just the filename being compiled/linked, not the full path to it.Misha Brukman
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9018 91177308-0d34-0410-b5e6-96231b3b80d8