summaryrefslogtreecommitdiff
path: root/test/Makefile
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2005-05-16 16:55:47 +0000
committerAndy Polyakov <appro@openssl.org>2005-05-16 16:55:47 +0000
commitce92b6eb9c9f4fa570564ec2dd9cbce68d9983f3 (patch)
treec624cf871e348c42de579d327b62d5d7518068cf /test/Makefile
parent7abbffc3fb15f86bc32f0ded9dab2b683f733cbb (diff)
downloadopenssl-new-ce92b6eb9c9f4fa570564ec2dd9cbce68d9983f3.tar.gz
Further BUILDENV refinement, further fool-proofing of Makefiles and
[most importantly] put back dependencies accidentaly eliminated in check-in #13342.
Diffstat (limited to 'test/Makefile')
-rw-r--r--test/Makefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/test/Makefile b/test/Makefile
index 62b8d55e51..b6575dda12 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -7,8 +7,6 @@ TOP= ..
CC= cc
INCLUDES= -I$(TOP) -I../include $(KRB5_INCLUDES)
CFLAG= -g
-MAKEFILE= Makefile
-MAKEDEPPROG= makedepend
MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
PERL= perl
# KRB5 stuff
@@ -287,7 +285,11 @@ lint:
lint -DLINT $(INCLUDES) $(SRC)>fluff
depend:
- $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(SRC)
+ @if [ -z "$(THIS)" ]; then \
+ $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; \
+ else \
+ $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(SRC); \
+ fi
dclean:
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new