summaryrefslogtreecommitdiff
path: root/astman
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2003-05-06 00:00:20 +0000
committerMark Spencer <markster@digium.com>2003-05-06 00:00:20 +0000
commit1a3cd8e6ad52008d37981ca9043da28c18f567f6 (patch)
treea420a69f2f690405d9bc3d526e46be177d3ff80d /astman
parentfda8b94bdf5ebf5da8cbdd7a3a971df23022a3e4 (diff)
dep fix, pbx fix
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@962 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'astman')
-rwxr-xr-xastman/Makefile12
1 files changed, 10 insertions, 2 deletions
diff --git a/astman/Makefile b/astman/Makefile
index 9698d6280..7b9d20f6f 100755
--- a/astman/Makefile
+++ b/astman/Makefile
@@ -3,7 +3,7 @@
#
CFLAGS+=-DNO_AST_MM
TARGET=$(shell if [ -f /usr/include/newt.h ]; then echo "astman"; else echo "none" ; fi)
-all: $(TARGET)
+all: depend $(TARGET)
install:
if [ "$(TARGET)" != "none" ]; then \
@@ -16,7 +16,15 @@ none:
@echo Not building the Asterisk Manager "astman"
clean:
- rm -f *.o astman
+ rm -f *.o astman .depend
astman: astman.o ../md5.o
$(CC) -o astman astman.o ../md5.o -lnewt
+
+include .depend
+
+depend: .depend
+
+.depend:
+ ../mkdep $(CFLAGS) `ls *.c`
+