From 64301d47eb9ee5343584014c574fdf0c8240ffd4 Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Wed, 11 May 2005 03:37:29 +0000 Subject: [PATCH] get rid of warning about missing .depend (bug #4061) git-svn-id: https://origsvn.digium.com/svn/libpri/branches/v1-0@216 2fbb986a-6c06-0410-b554-c9c1f0a7f128 --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index ecbc657..ad83c16 100755 --- a/Makefile +++ b/Makefile @@ -90,7 +90,9 @@ testprilib: testprilib.o pridump: pridump.o $(CC) -o pridump pridump.o -L. -lpri -lzap $(CFLAGS) +ifneq ($(wildcard .depend),) include .depend +endif %.lo : %.c $(CC) -fPIC $(CFLAGS) -o $@ -c $<