aboutsummaryrefslogtreecommitdiffstats
path: root/astman/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'astman/Makefile')
-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`
+