diff options
author | Richard Levitte <levitte@openssl.org> | 2016-02-18 13:17:15 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2016-02-18 23:43:09 +0100 |
commit | ce192ebed0f5445076996b46c279a1499fdc8948 (patch) | |
tree | 83bc0d2247e2577d6d9ddb6cef81891c202e0ac7 /test/Makefile.in | |
parent | Don't treat .d (depend) files separately from object files (diff) | |
download | openssl-ce192ebed0f5445076996b46c279a1499fdc8948.tar.xz openssl-ce192ebed0f5445076996b46c279a1499fdc8948.zip |
Remove all special make depend flags, as well as OPENSSL_DOING_MAKEDEPEND
All those flags existed because we had all the dependencies versioned
in the repository, and wanted to have it be consistent, no matter what
the local configuration was. Now that the dependencies are gone from
the versioned Makefile.ins, it makes much more sense to use the exact
same flags as when compiling the object files.
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'test/Makefile.in')
-rw-r--r-- | test/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Makefile.in b/test/Makefile.in index 0a75304a2a..767948c602 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -165,7 +165,7 @@ apps: @(cd ..; $(MAKE) DIRS=apps all) depend: - $(TOP)/util/domd $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(SRC) + $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(SRC) clean: rm -f .rnd tmp.bntest tmp.bctest *.o *.obj *.dll lib tags core .pure .nfs* *.old *.bak fluff $(EXE) *.ss *.srl log *.log dummytest |