[Asterisk-cvs] asterisk/utils Makefile,1.2,1.3
markster at lists.digium.com
markster at lists.digium.com
Wed Dec 15 11:12:49 CST 2004
Update of /usr/cvsroot/asterisk/utils
In directory mongoose.digium.com:/tmp/cvs-serv30264/utils
Modified Files:
Makefile
Log Message:
Fix it so TARGET always has at least one thing in it (bug #3049)
Index: Makefile
===================================================================
RCS file: /usr/cvsroot/asterisk/utils/Makefile,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- Makefile 13 Dec 2004 21:45:03 -0000 1.2
+++ Makefile 15 Dec 2004 16:09:30 -0000 1.3
@@ -8,6 +8,8 @@
CFLAGS+=-I/usr/local/include -L/usr/local/lib
endif
+TARGET=none
+
TARGET+=$(shell if [ -f /usr/include/popt.h ]; then echo "smsq"; else if [ -f /usr/local/include/popt.h ]; then echo "smsq"; fi ; fi)
TARGET+=$(shell if [ -f /usr/include/newt.h ]; then echo "astman"; else if [ -f /usr/local/include/newt.h ]; then echo "astman"; fi ; fi)
@@ -21,7 +23,6 @@
fi
none:
- @echo Not building the Asterisk Manager "astman"
clean:
rm -f *.o astman smsq .depend
More information about the svn-commits
mailing list