[asterisk-commits] trunk r30012 - /trunk/utils/Makefile
    asterisk-commits at lists.digium.com 
    asterisk-commits at lists.digium.com
       
    Wed May 24 11:18:14 MST 2006
    
    
  
Author: kpfleming
Date: Wed May 24 13:18:14 2006
New Revision: 30012
URL: http://svn.digium.com/view/asterisk?rev=30012&view=rev
Log:
don't force the compiler name
Modified:
    trunk/utils/Makefile
Modified: trunk/utils/Makefile
URL: http://svn.digium.com/view/asterisk/trunk/utils/Makefile?rev=30012&r1=30011&r2=30012&view=diff
==============================================================================
--- trunk/utils/Makefile (original)
+++ trunk/utils/Makefile Wed May 24 13:18:14 2006
@@ -92,9 +92,9 @@
 	$(CC) $(CFLAGS) -c -g  -o ael_main1.o ael_main.c
 
 testexpr2s: ../ast_expr2f.c ../ast_expr2.c ../ast_expr2.h
-	gcc -g -c -I../include -DSTANDALONE ../ast_expr2f.c -o ast_expr2f.o
-	gcc -g -c -I../include -DSTANDALONE ../ast_expr2.c -o ast_expr2.o
-	gcc -g -o testexpr2s ast_expr2f.o ast_expr2.o
+	$(CC) -g -c -I../include -DSTANDALONE ../ast_expr2f.c -o ast_expr2f.o
+	$(CC) -g -c -I../include -DSTANDALONE ../ast_expr2.c -o ast_expr2.o
+	$(CC) -g -o testexpr2s ast_expr2f.o ast_expr2.o
 	rm ast_expr2.o ast_expr2f.o 
 	./testexpr2s expr2.testinput
 
    
    
More information about the asterisk-commits
mailing list