summaryrefslogtreecommitdiffstats
path: root/ssl/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'ssl/Makefile')
-rw-r--r--ssl/Makefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/ssl/Makefile b/ssl/Makefile
index 8fc7825f26..49b7ca4807 100644
--- a/ssl/Makefile
+++ b/ssl/Makefile
@@ -7,8 +7,6 @@ TOP= ..
CC= cc
INCLUDES= -I../crypto -I$(TOP) -I../include $(KRB5_INCLUDES)
CFLAG=-g
-MAKEDEPPROG= makedepend
-MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
MAKEFILE= Makefile
AR= ar r
# KRB5 stuff
@@ -92,7 +90,11 @@ lint:
lint -DLINT $(INCLUDES) $(SRC)>fluff
depend:
- $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
+ @if [ -z "$(THIS)" ]; then \
+ $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; \
+ else \
+ $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC); \
+ fi
dclean:
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new