Change macro names per naming standard in Makefile.rules.
authorReid Spencer <rspencer@reidspencer.com>
Sat, 30 Oct 2004 09:26:22 +0000 (09:26 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Sat, 30 Oct 2004 09:26:22 +0000 (09:26 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17361 91177308-0d34-0410-b5e6-96231b3b80d8

projects/Stacker/samples/Makefile

index d5b278061cc1bdc65c21dcc38cc10969221eb9d1..e885eb99e82e73f7859736fc34f1f8961128ba1d 100644 (file)
@@ -20,12 +20,12 @@ all :: $(SAMPLES)
 
 ifdef OPTIMIZE
 % : %.st 
-       @$(ECHO) "Compiling and Optimizing $(<F)"
-       $(VERB)$(LLVMC_EXEC) -O3 $< -o $@
+       $(Echo) "Compiling and Optimizing $(<F)"
+       $(Verb)$(LLVMC_EXEC) -O3 $< -o $@
 else
 % : %.st
-       @$(ECHO) "Compiling $(<F)"
-       $(VERB)$(LLVMC_EXEC) $< -o $@
+       $(Echo) "Compiling $(<F)"
+       $(Verb)$(LLVMC_EXEC) $< -o $@
 endif
 
 SAMPLES_LL = $(SAMPLES:%=%.ll)
@@ -33,7 +33,7 @@ SAMPLES_BC = $(SAMPLES:%=%.bc)
 SAMPLES_S  = $(SAMPLES:%=%.s)
 
 clean ::
-       $(VERB)rm -f gmon.out $(SAMPLES)
+       $(Verb)rm -f gmon.out $(SAMPLES)
 #
 # Include the Master Makefile that knows how to build all.
 #