From bd09dd9707866e3afc86811cbcbfa855bd23758c Mon Sep 17 00:00:00 2001 From: Michael Jerris Date: Tue, 19 Feb 2008 04:08:17 +0000 Subject: [PATCH] add banners to the end of make and make install git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@7696 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- Makefile.am | 2 +- build/Makefile | 27 +++++++++++++++++++++++++++ 2 files changed, 28 insertions(+), 1 deletion(-) create mode 100644 build/Makefile diff --git a/Makefile.am b/Makefile.am index 9a4f0cb516..cbecaf6a37 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,5 +1,5 @@ EXTRA_DIST = -SUBDIRS = . src +SUBDIRS = . src build AUTOMAKE_OPTS = foreign NAME=freeswitch PREFIX=$(prefix) diff --git a/build/Makefile b/build/Makefile new file mode 100644 index 0000000000..67016c06e8 --- /dev/null +++ b/build/Makefile @@ -0,0 +1,27 @@ +all: + @echo " +-------- FreeSWITCH Build Complete --------+" + @echo " + FreeSWITCH has been successfully built. +" + @echo " + Install by running: +" + @echo " + +" + @echo " + $(MAKE) install +" + @echo " +-------------------------------------------+" + +install: + @echo " +-------- FreeSWITCH install Complete --------+" + @echo " + FreeSWITCH has been successfully installed. +" + @echo " + +" + @echo " + Install sounds by running: +" + @echo " + +" + @echo " + $(MAKE) sounds-install +" + @echo " + $(MAKE) moh-install +" + @echo " + +" + @echo " + Additional resources: +" + @echo " + http://wiki.freeswitch.org +" + @echo " + +" + @echo " + Additional make targets: +" + @echo " + +" + @echo " + $(MAKE) sure +" + @echo " + $(MAKE) current +" + @echo " + $(MAKE) samples +" + @echo " + +" + @echo " +---------------------------------------------+"