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

@@ -22,7 +22,7 @@ CFLAGS+=$(shell [ -f /usr/include/linux/zaptel.h ] && echo " -DZAPATA_MOH")
#
CFLAGS+=-DOPENSSL_NO_KRB5 -fPIC
all: $(MODS)
all: depend $(MODS)
install: all
for x in $(MODS); do $(INSTALL) -m 755 $$x $(MODULES_DIR) ; done
@@ -31,7 +31,14 @@ res_crypto.so: res_crypto.o
$(CC) -shared -Xlinker -x -o $@ $< $(CRYPTO_LIBS)
clean:
rm -f *.so *.o
rm -f *.so *.o .depend
%.so : %.o
$(CC) -shared -Xlinker -x -o $@ $<
include .depend
depend: .depend
.depend:
../mkdep $(CFLAGS) `ls *.c`