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 " +---------------------------------------------+"