summaryrefslogtreecommitdiffstats
path: root/llvm/Makefile.common
Commit message (Collapse)AuthorAgeFilesLines
...
* Simplified significantly by pulling out local configuration optionsVikram S. Adve2002-08-291-24/+13
| | | | | | into Makefile.config. llvm-svn: 3527
* Factor out /shared/... path to simplify changing it.Vikram S. Adve2002-08-291-4/+13
| | | | llvm-svn: 3521
* Fix clean command to clean in /shared when that is used.Vikram S. Adve2002-08-221-1/+1
| | | | llvm-svn: 3449
* Throw purify temporary files into /shared if we have it.Chris Lattner2002-08-171-1/+1
| | | | llvm-svn: 3365
* - Makefile changes:Chris Lattner2002-08-121-27/+38
| | | | | | | | | - Now build executables into /shared - New BUILD_ROOT_TOP variable which is basically = $(BUILD_ROOT)/$(LEVEL) but cleaner and works for llvm/test/* - Use := more in Makefile.common llvm-svn: 3291
* Oops, I accidentally broke the .d files. Fixed thuslyChris Lattner2002-08-091-1/+1
| | | | llvm-svn: 3272
* * Remove some bogus dependencies on Depend/.dirChris Lattner2002-08-091-19/+35
| | | | | | | * Build into the machine local /shared directory instead of using local Debug/Depend/Release directories llvm-svn: 3269
* Comment options that may be enabledChris Lattner2002-08-031-1/+13
| | | | llvm-svn: 3237
* Don't build Debug/ versions when ENABLE_OPTIMIZED is on.Vikram S. Adve2002-08-021-1/+4
| | | | llvm-svn: 3216
* Cleanup Makefile a bitChris Lattner2002-07-311-16/+7
| | | | llvm-svn: 3192
* Changes to allow building lib/Target/Sparc the FIRST time.Chris Lattner2002-07-251-4/+4
| | | | llvm-svn: 3078
* Allow directories to specify that they want to be built as a shared object ↵Chris Lattner2002-07-231-0/+5
| | | | | | by default llvm-svn: 3027
* Enable USEDLIBS to contain .a and .o filesChris Lattner2002-07-231-25/+90
| | | | llvm-svn: 3003
* Add makefile-mode flag for emacs.Vikram S. Adve2002-07-091-1/+2
| | | | llvm-svn: 2841
* * Allow a profile'd code build to be done with a simple 'make ↵Chris Lattner2002-05-101-7/+11
| | | | | | | | | | ENABLE_PROFILING=1' * Only build tags for include, lib, and tools, not tests * Turn on verbose output from bison to get information about shift/reduce conficts (why isn't this the default??) llvm-svn: 2603
* Hopefully this change will make the makefile work for other people without ↵Chris Lattner2002-04-071-1/+1
| | | | | | hacking it. llvm-svn: 2128
* * Allow purify builds to be enabled without hacking the makefile. Now youChris Lattner2002-04-051-2/+5
| | | | | | | | just have to run: make ENABLE_PURIFY=1 * Add command to the link line that makes the broken GCC 3.0 compiler work without affecting 2.95.3 llvm-svn: 2116
* Try to fix build errorChris Lattner2002-02-111-1/+1
| | | | llvm-svn: 1723
* Add := to make stuff more efficientChris Lattner2002-01-231-11/+11
| | | | llvm-svn: 1551
* Reenable warning now that Chuck fixed GCCChris Lattner2002-01-211-1/+1
| | | | llvm-svn: 1517
* Changes to build successfully with GCC 3.02Chris Lattner2002-01-201-1/+1
| | | | llvm-svn: 1503
* 1. -Winline emits spurious warnings that aren't useful right nowChris Lattner2001-11-071-1/+2
| | | | | | 2. Fix the "rebuild everything if I change one file" problem llvm-svn: 1176
* Add easy way to enable purify supportChris Lattner2001-10-301-0/+6
| | | | llvm-svn: 1045
* Simplify etags command.Vikram S. Adve2001-10-221-1/+1
| | | | llvm-svn: 954
* Change Sources specifier to ExtraSourcesChris Lattner2001-10-181-3/+4
| | | | llvm-svn: 874
* Allow only extra Source files to be listed in a local Makefile.Vikram S. Adve2001-10-171-3/+3
| | | | | | Needed for automatically generated .cpp files. llvm-svn: 853
* Burg files should come out of the Debug Directory for temporary filesChris Lattner2001-10-141-1/+1
| | | | llvm-svn: 790
* Fixed tags target so it only happens at root level.Vikram S. Adve2001-10-131-1/+6
| | | | llvm-svn: 787
* Each tools should not make tagsChris Lattner2001-10-131-1/+1
| | | | llvm-svn: 730
* Added a rule for building TAGS.Vikram S. Adve2001-10-101-1/+9
| | | | llvm-svn: 723
* Add support for tool specified linker optionsChris Lattner2001-09-101-2/+2
| | | | llvm-svn: 527
* Fix automatic dependence on static libsChris Lattner2001-09-091-3/+3
| | | | llvm-svn: 513
* Support TOOLNAME and USEDLIBS options for easier tool buildingChris Lattner2001-09-071-40/+50
| | | | llvm-svn: 498
* Added InstrSched library to link line.Vikram S. Adve2001-08-281-3/+3
| | | | llvm-svn: 386
* And add rule to create a .cpp source file from burg input file!Vikram S. Adve2001-08-061-0/+4
| | | | llvm-svn: 345
* Add path and options for burg.Vikram S. Adve2001-08-061-0/+9
| | | | llvm-svn: 343
* Remove lib/LLC library.Vikram S. Adve2001-07-281-2/+1
| | | | llvm-svn: 314
* Added support for getting the dependence of an executable on its libs,Vikram S. Adve2001-07-211-2/+16
| | | | | | | | | using a variable to get the list of libraries on the link path. BUG: If the library in the same directory as the executable is missing, BUG: gnumake will build the library but then fail when linking the executable BUG: saying the library was not found. Need a better hack. llvm-svn: 225
* Compile source files in alphabetical orderChris Lattner2001-07-181-1/+2
| | | | llvm-svn: 202
* Changed default to building library archives instead of shared objects.Vikram S. Adve2001-07-151-5/+29
| | | | | | Added support for compiling *.c files. llvm-svn: 197
* Fixed the obnoxious problem that caused an entire directory to rebuildChris Lattner2001-06-291-3/+3
| | | | | | even if you only change one .cpp file. Yaay llvm-svn: 97
* Initial revisionChris Lattner2001-06-061-0/+170
llvm-svn: 2
OpenPOWER on IntegriCloud