ensure that dependencies are rebuilt after 'make update' so that builds don't break when files are removed/renamed

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@9691 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Kevin P. Fleming
2006-02-12 16:52:42 +00:00
parent 96bf384e7d
commit e7c198453d
14 changed files with 71 additions and 37 deletions

View File

@@ -26,8 +26,11 @@ endif
all: $(MODS)
clean:
rm -f *.so *.o .depend
clean-depend:
rm -f .depend
clean: clean-depend
rm -f *.so *.o
%.so : %.o
$(CC) $(SOLINK) -o $@ ${CYGSOLINK} $< ${CYGSOLIB}