summaryrefslogtreecommitdiffstats
path: root/Configurations/windows-makefile.tmpl
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-06-14 21:39:13 +0200
committerRichard Levitte <levitte@openssl.org>2016-06-14 22:11:38 +0200
commit932eaf0085eca0e7e9135da80376fb73d9af2d18 (patch)
treeb4c5901c63384de1a7d6e852bab2b4e3ae15ecbd /Configurations/windows-makefile.tmpl
parent7cae38642e116b0a769fb3c31448be29469dc1da (diff)
Add a developer target 'build_generated' to rebuild mandatory headers
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'Configurations/windows-makefile.tmpl')
-rw-r--r--Configurations/windows-makefile.tmpl14
1 files changed, 8 insertions, 6 deletions
diff --git a/Configurations/windows-makefile.tmpl b/Configurations/windows-makefile.tmpl
index b1c5554f6b..0a06b115af 100644
--- a/Configurations/windows-makefile.tmpl
+++ b/Configurations/windows-makefile.tmpl
@@ -145,20 +145,22 @@ PROCESSOR= {- $config{processor} -}
# The main targets ###################################################
-all: $(GENERATED_MANDATORY) \
+all: build_generated \
build_libs_nodep build_engines_nodep build_apps_nodep depend
-build_libs: $(GENERATED_MANDATORY) build_libs_nodep depend
+build_libs: build_generated build_libs_nodep depend
build_libs_nodep: $(LIBS)
-build_engines: $(GENERATED_MANDATORY) build_engines_nodep depend
+build_engines: build_generated build_engines_nodep depend
build_engines_nodep: $(ENGINES)
-build_apps: $(GENERATED_MANDATORY) build_apps_nodep depend
+build_apps: build_generated build_apps_nodep depend
build_apps_nodep: $(PROGRAMS) $(SCRIPTS)
-build_tests: $(GENERATED_MANDATORY) build_tests_nodep depend
+build_tests: build_generated build_tests_nodep depend
build_tests_nodep: $(TESTPROGS)
+build_generated: $(GENERATED_MANDATORY)
+
test: tests
-tests: $(GENERATED_MANDATORY) \
+tests: build_generated \
build_tests_nodep build_apps_nodep build_engines_nodep depend
@rem {- output_off() if $disabled{tests}; "" -}
set SRCTOP=$(SRCDIR)