dep fix, pbx fix

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@962 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Spencer
2003-05-06 00:00:20 +00:00
parent fda8b94bdf
commit 1a3cd8e6ad
10 changed files with 87 additions and 20 deletions

View File

@@ -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`