@@ -413,19 +413,19 @@ ${GENERATED}/${LATEST}.ddoc :
413
413
mkdir -p $(dir $@ )
414
414
echo " LATEST=${LATEST} " > $@
415
415
416
- ${GENERATED}/modlist-${LATEST}.ddoc : modlist.d ${STABLE_DMD} $(DRUNTIME_LATEST_DIR ) $(PHOBOS_LATEST_DIR ) $(DMD_LATEST_DIR )
416
+ ${GENERATED}/modlist-${LATEST}.ddoc : tools/ modlist.d ${STABLE_DMD} $(DRUNTIME_LATEST_DIR ) $(PHOBOS_LATEST_DIR ) $(DMD_LATEST_DIR )
417
417
mkdir -p $(dir $@ )
418
- $(STABLE_RDMD ) modlist.d $(DRUNTIME_LATEST_DIR ) $(PHOBOS_LATEST_DIR ) $(DMD_LATEST_DIR ) $(MOD_EXCLUDES_LATEST ) \
418
+ $(STABLE_RDMD ) $< $(DRUNTIME_LATEST_DIR ) $(PHOBOS_LATEST_DIR ) $(DMD_LATEST_DIR ) $(MOD_EXCLUDES_LATEST ) \
419
419
$(addprefix --dump , object std etc core) --dump dmd > $@
420
420
421
- ${GENERATED}/modlist-release.ddoc : modlist.d ${STABLE_DMD} $(DRUNTIME_DIR ) $(PHOBOS_DIR ) $(DMD_DIR )
421
+ ${GENERATED}/modlist-release.ddoc : tools/ modlist.d ${STABLE_DMD} $(DRUNTIME_DIR ) $(PHOBOS_DIR ) $(DMD_DIR )
422
422
mkdir -p $(dir $@ )
423
- $(STABLE_RDMD ) modlist.d $(DRUNTIME_DIR ) $(PHOBOS_DIR ) $(DMD_DIR ) $(MOD_EXCLUDES_RELEASE ) \
423
+ $(STABLE_RDMD ) $< $(DRUNTIME_DIR ) $(PHOBOS_DIR ) $(DMD_DIR ) $(MOD_EXCLUDES_RELEASE ) \
424
424
$(addprefix --dump , object std etc core) --dump dmd > $@
425
425
426
- ${GENERATED}/modlist-prerelease.ddoc : modlist.d ${STABLE_DMD} $(DRUNTIME_DIR ) $(PHOBOS_DIR ) $(DMD_DIR )
426
+ ${GENERATED}/modlist-prerelease.ddoc : tools/ modlist.d ${STABLE_DMD} $(DRUNTIME_DIR ) $(PHOBOS_DIR ) $(DMD_DIR )
427
427
mkdir -p $(dir $@ )
428
- $(STABLE_RDMD ) modlist.d $(DRUNTIME_DIR ) $(PHOBOS_DIR ) $(DMD_DIR ) $(MOD_EXCLUDES_PRERELEASE ) \
428
+ $(STABLE_RDMD ) $< $(DRUNTIME_DIR ) $(PHOBOS_DIR ) $(DMD_DIR ) $(MOD_EXCLUDES_PRERELEASE ) \
429
429
$(addprefix --dump , object std etc core dmd rt) > $@
430
430
431
431
# Run "make -j rebase" for rebasing all dox in parallel!
@@ -825,20 +825,20 @@ chm-nav-prerelease.json : $(DDOC) std.ddoc spec/spec.ddoc ${GENERATED}/modlist-p
825
825
# Dman tags
826
826
# ###############################################################################
827
827
828
- d-latest.tag d-tags-latest.json : chmgen.d $(STABLE_DMD ) $(ALL_FILES ) phobos-latest druntime-latest chm-nav-latest.json
829
- $(STABLE_RDMD ) chmgen.d --root=$W --target latest
828
+ d-latest.tag d-tags-latest.json : tools/ chmgen.d $(STABLE_DMD ) $(ALL_FILES ) phobos-latest druntime-latest chm-nav-latest.json
829
+ $(STABLE_RDMD ) $< --root=$W --target latest
830
830
831
- d-release.tag d-tags-release.json : chmgen.d $(STABLE_DMD ) $(ALL_FILES ) phobos-release druntime-release chm-nav-release.json
832
- $(STABLE_RDMD ) chmgen.d --root=$W --target release
831
+ d-release.tag d-tags-release.json : tools/ chmgen.d $(STABLE_DMD ) $(ALL_FILES ) phobos-release druntime-release chm-nav-release.json
832
+ $(STABLE_RDMD ) $< --root=$W --target release
833
833
834
- d-prerelease.tag d-tags-prerelease.json : chmgen.d $(STABLE_DMD ) $(ALL_FILES ) phobos-prerelease druntime-prerelease chm-nav-prerelease.json
835
- $(STABLE_RDMD ) chmgen.d --root=$W --target prerelease
834
+ d-prerelease.tag d-tags-prerelease.json : tools/ chmgen.d $(STABLE_DMD ) $(ALL_FILES ) phobos-prerelease druntime-prerelease chm-nav-prerelease.json
835
+ $(STABLE_RDMD ) $< --root=$W --target prerelease
836
836
837
837
# ###############################################################################
838
838
# Style tests
839
839
# ###############################################################################
840
840
841
- test_dspec : dspec_tester.d $(DMD ) $(PHOBOS_LIB )
841
+ test_dspec : tools/ dspec_tester.d $(DMD ) $(PHOBOS_LIB )
842
842
@echo " Test the D Language specification"
843
843
$(DMD ) -run $< --compiler=$(DMD )
844
844
@@ -849,8 +849,8 @@ test: test_dspec test/next_version.sh all | $(STABLE_DMD) $(DUB)
849
849
@echo " Searching for tabs"
850
850
@grep -n -P " \t" $$(find . -type f -name "*.dd" | grep -v .generated ) ; test $$? -eq 1
851
851
@echo " Checking DDoc's output"
852
- $(STABLE_RDMD ) -main -unittest check_ddoc.d
853
- $(STABLE_RDMD ) check_ddoc.d $$(find $W -type f -name "*.html" -not -path "$W/phobos/*" )
852
+ $(STABLE_RDMD ) -main -unittest tools/ check_ddoc.d
853
+ $(STABLE_RDMD ) tools/ check_ddoc.d $$(find $W -type f -name "*.html" -not -path "$W/phobos/*" )
854
854
@echo " Executing ddoc_preprocessor tests"
855
855
$(DUB ) test --compiler=${STABLE_DMD} --root ddoc
856
856
@echo " Executing next_version tests"
0 commit comments