summaryrefslogtreecommitdiff
path: root/utils/Makefile
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2006-06-22 14:09:18 +0000
committerRussell Bryant <russell@russellbryant.com>2006-06-22 14:09:18 +0000
commit9db0520ff9ab3a28553802b5fdf5df5b34d8b071 (patch)
tree5664ac022a9b86dcf0259e7cffea0b4c0b628238 /utils/Makefile
parentdbfa007d8aa2e26cd1f07e82febfd89dda3d57ef (diff)
- specify that 'all' is a .PHONY target
- add a copyright header to the build_tools Makefile - remove 'depend' from the 'all' target in agi/ and utils/ since it is handled by the main Makefile already git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@35479 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'utils/Makefile')
-rw-r--r--utils/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/Makefile b/utils/Makefile
index ed61cd676..54e4d15ac 100644
--- a/utils/Makefile
+++ b/utils/Makefile
@@ -11,7 +11,7 @@
# the GNU General Public License
#
-.PHONY: clean clean-depend
+.PHONY: clean clean-depend all
UTILS:=astman smsq stereorize streamplayer aelparse
@@ -32,7 +32,7 @@ ifneq ($(filter pbx_ael,$(MENUSELECT_PBX)),)
UTILS:=$(filter-out aelparse,$(UTILS))
endif
-all: depend $(UTILS)
+all: $(UTILS)
install:
for x in $(UTILS); do \