[llvm-commits] CVS: llvm/runtime/GCCLibraries/crtend/Makefile

Reid Spencer reid at x10sys.com
Thu Dec 2 01:58:24 PST 2004



Changes in directory llvm/runtime/GCCLibraries/crtend:

Makefile updated: 1.21 -> 1.22
---
Log message:

Standardize the makefiles with space around = to match the rest of LLVM.


---
Diffs of the changes:  (+5 -5)

Index: llvm/runtime/GCCLibraries/crtend/Makefile
diff -u llvm/runtime/GCCLibraries/crtend/Makefile:1.21 llvm/runtime/GCCLibraries/crtend/Makefile:1.22
--- llvm/runtime/GCCLibraries/crtend/Makefile:1.21	Thu Dec  2 03:29:49 2004
+++ llvm/runtime/GCCLibraries/crtend/Makefile	Thu Dec  2 03:58:08 2004
@@ -15,17 +15,17 @@
 #
 ##===----------------------------------------------------------------------===##
 
-LEVEL=../../..
-DONT_BUILD_RELINKED=1
-BYTECODE_LIBRARY=1
-LIBRARYNAME=crtend
+LEVEL = ../../..
+DONT_BUILD_RELINKED = 1
+BYTECODE_LIBRARY = 1
+LIBRARYNAME = crtend
 
 # Note: We're fooling Makefile.rules here. The sources listed don't exist but
 # it doesn't matter. Makefile.rules just uses $(SOURCES) to generate the set of
 # object files to put in the library. Since we've specified BYTECODE_LIBRARY
 # above, it changes the .c suffix to .bc suffix. Below are rules to build 
 # each of those bytecode objects from the sources we do have in this directory.
-SOURCES=comp_main.c comp_genericeh.c comp_sjljeh.c
+SOURCES = comp_main.c comp_genericeh.c comp_sjljeh.c
 
 EXTRA_DIST   := comp_main.lst comp_genericeh.lst comp_sjljeh.lst
 






More information about the llvm-commits mailing list