mirror of
https://github.com/dlang/phobos.git
synced 2025-04-27 05:30:33 +03:00
Remove docs build from the Windows Makefiles
This commit is contained in:
parent
2ba1aae612
commit
2c54a120fc
2 changed files with 0 additions and 1250 deletions
627
win32.mak
627
win32.mak
|
@ -14,8 +14,6 @@
|
|||
# Build phobos.lib, build and run unit tests
|
||||
# make cov
|
||||
# Build for coverage tests, run coverage tests
|
||||
# make html
|
||||
# Build documentation
|
||||
# Notes:
|
||||
# minit.obj requires Microsoft MASM386.EXE to build from minit.asm,
|
||||
# or just use the supplied minit.obj
|
||||
|
@ -64,14 +62,6 @@ BUILD=release
|
|||
OS=windows
|
||||
DMD=$(DMD_DIR)\generated\$(OS)\$(BUILD)\$(MODEL)\dmd
|
||||
|
||||
## Location of where to write the html documentation files
|
||||
|
||||
DOCSRC = ../dlang.org
|
||||
STDDOC = $(DOCSRC)/html.ddoc $(DOCSRC)/dlang.org.ddoc $(DOCSRC)/std.ddoc $(DOCSRC)/macros.ddoc $(DOCSRC)/std_navbar-prerelease.ddoc project.ddoc
|
||||
|
||||
DOC=..\..\html\d\phobos
|
||||
#DOC=..\doc\phobos
|
||||
|
||||
## Zlib library
|
||||
|
||||
ZLIB=etc\c\zlib\zlib.lib
|
||||
|
@ -402,153 +392,6 @@ SRC_ZLIB= \
|
|||
etc\c\zlib\linux.mak \
|
||||
etc\c\zlib\osx.mak
|
||||
|
||||
|
||||
DOCS= \
|
||||
$(DOC)\object.html \
|
||||
$(DOC)\core_atomic.html \
|
||||
$(DOC)\core_bitop.html \
|
||||
$(DOC)\core_exception.html \
|
||||
$(DOC)\core_memory.html \
|
||||
$(DOC)\core_runtime.html \
|
||||
$(DOC)\core_simd.html \
|
||||
$(DOC)\core_time.html \
|
||||
$(DOC)\core_thread.html \
|
||||
$(DOC)\core_vararg.html \
|
||||
$(DOC)\core_sync_barrier.html \
|
||||
$(DOC)\core_sync_condition.html \
|
||||
$(DOC)\core_sync_config.html \
|
||||
$(DOC)\core_sync_exception.html \
|
||||
$(DOC)\core_sync_mutex.html \
|
||||
$(DOC)\core_sync_rwmutex.html \
|
||||
$(DOC)\core_sync_semaphore.html \
|
||||
$(DOC)\std_algorithm.html \
|
||||
$(DOC)\std_algorithm_comparison.html \
|
||||
$(DOC)\std_algorithm_iteration.html \
|
||||
$(DOC)\std_algorithm_mutation.html \
|
||||
$(DOC)\std_algorithm_searching.html \
|
||||
$(DOC)\std_algorithm_setops.html \
|
||||
$(DOC)\std_algorithm_sorting.html \
|
||||
$(DOC)\std_array.html \
|
||||
$(DOC)\std_ascii.html \
|
||||
$(DOC)\std_base64.html \
|
||||
$(DOC)\std_bigint.html \
|
||||
$(DOC)\std_bitmanip.html \
|
||||
$(DOC)\std_concurrency.html \
|
||||
$(DOC)\std_compiler.html \
|
||||
$(DOC)\std_complex.html \
|
||||
$(DOC)\std_container_array.html \
|
||||
$(DOC)\std_container_binaryheap.html \
|
||||
$(DOC)\std_container_dlist.html \
|
||||
$(DOC)\std_container_rbtree.html \
|
||||
$(DOC)\std_container_slist.html \
|
||||
$(DOC)\std_container.html \
|
||||
$(DOC)\std_container_util.html \
|
||||
$(DOC)\std_conv.html \
|
||||
$(DOC)\std_digest_crc.html \
|
||||
$(DOC)\std_digest_sha.html \
|
||||
$(DOC)\std_digest_md.html \
|
||||
$(DOC)\std_digest_ripemd.html \
|
||||
$(DOC)\std_digest_hmac.html \
|
||||
$(DOC)\std_digest_digest.html \
|
||||
$(DOC)\std_digest_hmac.html \
|
||||
$(DOC)\std_csv.html \
|
||||
$(DOC)\std_datetime.html \
|
||||
$(DOC)\std_datetime_date.html \
|
||||
$(DOC)\std_datetime_interval.html \
|
||||
$(DOC)\std_datetime_stopwatch.html \
|
||||
$(DOC)\std_datetime_systime.html \
|
||||
$(DOC)\std_datetime_timezone.html \
|
||||
$(DOC)\std_demangle.html \
|
||||
$(DOC)\std_encoding.html \
|
||||
$(DOC)\std_exception.html \
|
||||
$(DOC)\std_file.html \
|
||||
$(DOC)\std_format.html \
|
||||
$(DOC)\std_functional.html \
|
||||
$(DOC)\std_getopt.html \
|
||||
$(DOC)\std_json.html \
|
||||
$(DOC)\std_math.html \
|
||||
$(DOC)\std_mathspecial.html \
|
||||
$(DOC)\std_meta.html \
|
||||
$(DOC)\std_mmfile.html \
|
||||
$(DOC)\std_numeric.html \
|
||||
$(DOC)\std_outbuffer.html \
|
||||
$(DOC)\std_parallelism.html \
|
||||
$(DOC)\std_path.html \
|
||||
$(DOC)\std_process.html \
|
||||
$(DOC)\std_random.html \
|
||||
$(DOC)\std_range.html \
|
||||
$(DOC)\std_range_primitives.html \
|
||||
$(DOC)\std_range_interfaces.html \
|
||||
$(DOC)\std_regex.html \
|
||||
$(DOC)\std_signals.html \
|
||||
$(DOC)\std_socket.html \
|
||||
$(DOC)\std_stdint.html \
|
||||
$(DOC)\std_stdio.html \
|
||||
$(DOC)\std_string.html \
|
||||
$(DOC)\std_system.html \
|
||||
$(DOC)\std_traits.html \
|
||||
$(DOC)\std_typecons.html \
|
||||
$(DOC)\std_typetuple.html \
|
||||
$(DOC)\std_uni.html \
|
||||
$(DOC)\std_uri.html \
|
||||
$(DOC)\std_utf.html \
|
||||
$(DOC)\std_uuid.html \
|
||||
$(DOC)\std_variant.html \
|
||||
$(DOC)\std_xml.html \
|
||||
$(DOC)\std_zip.html \
|
||||
$(DOC)\std_zlib.html \
|
||||
$(DOC)\std_net_isemail.html \
|
||||
$(DOC)\std_net_curl.html \
|
||||
$(DOC)\std_experimental_logger_core.html \
|
||||
$(DOC)\std_experimental_logger_filelogger.html \
|
||||
$(DOC)\std_experimental_logger_multilogger.html \
|
||||
$(DOC)\std_experimental_logger_nulllogger.html \
|
||||
$(DOC)\std_experimental_logger.html \
|
||||
$(DOC)\std_experimental_allocator_building_blocks_affix_allocator.html \
|
||||
$(DOC)\std_experimental_allocator_building_blocks_allocator_list.html \
|
||||
$(DOC)\std_experimental_allocator_building_blocks_ascending_page_allocator.html \
|
||||
$(DOC)\std_experimental_allocator_building_blocks_bitmapped_block.html \
|
||||
$(DOC)\std_experimental_allocator_building_blocks_bucketizer.html \
|
||||
$(DOC)\std_experimental_allocator_building_blocks_fallback_allocator.html \
|
||||
$(DOC)\std_experimental_allocator_building_blocks_free_list.html \
|
||||
$(DOC)\std_experimental_allocator_building_blocks_free_tree.html \
|
||||
$(DOC)\std_experimental_allocator_building_blocks_kernighan_ritchie.html \
|
||||
$(DOC)\std_experimental_allocator_building_blocks_null_allocator.html \
|
||||
$(DOC)\std_experimental_allocator_building_blocks_quantizer.html \
|
||||
$(DOC)\std_experimental_allocator_building_blocks_region.html \
|
||||
$(DOC)\std_experimental_allocator_building_blocks_scoped_allocator.html \
|
||||
$(DOC)\std_experimental_allocator_building_blocks_segregator.html \
|
||||
$(DOC)\std_experimental_allocator_building_blocks_stats_collector.html \
|
||||
$(DOC)\std_experimental_allocator_building_blocks.html \
|
||||
$(DOC)\std_experimental_allocator_common.html \
|
||||
$(DOC)\std_experimental_allocator_gc_allocator.html \
|
||||
$(DOC)\std_experimental_allocator_mmap_allocator.html \
|
||||
$(DOC)\std_experimental_allocator_showcase.html \
|
||||
$(DOC)\std_experimental_allocator_typed.html \
|
||||
$(DOC)\std_experimental_allocator.html \
|
||||
$(DOC)\std_experimental_typecons.html \
|
||||
$(DOC)\std_windows_charset.html \
|
||||
$(DOC)\std_windows_registry.html \
|
||||
$(DOC)\std_c_fenv.html \
|
||||
$(DOC)\std_c_locale.html \
|
||||
$(DOC)\std_c_math.html \
|
||||
$(DOC)\std_c_process.html \
|
||||
$(DOC)\std_c_stdarg.html \
|
||||
$(DOC)\std_c_stddef.html \
|
||||
$(DOC)\std_c_stdio.html \
|
||||
$(DOC)\std_c_stdlib.html \
|
||||
$(DOC)\std_c_string.html \
|
||||
$(DOC)\std_c_time.html \
|
||||
$(DOC)\std_c_wcharh.html \
|
||||
$(DOC)\etc_c_curl.html \
|
||||
$(DOC)\etc_c_sqlite3.html \
|
||||
$(DOC)\etc_c_zlib.html \
|
||||
$(DOC)\etc_c_odbc_sql.html \
|
||||
$(DOC)\etc_c_odbc_sqlext.html \
|
||||
$(DOC)\etc_c_odbc_sqltypes.html \
|
||||
$(DOC)\etc_c_odbc_sqlucode.html \
|
||||
$(DOC)\index.html
|
||||
|
||||
$(LIB) : $(SRC_TO_COMPILE) \
|
||||
$(ZLIB) $(DRUNTIMELIB) win32.mak win64.mak
|
||||
$(DMD) -lib -of$(LIB) -Xfphobos.json $(DFLAGS) $(SRC_TO_COMPILE) \
|
||||
|
@ -690,11 +533,6 @@ cov : $(SRC_TO_COMPILE) $(LIB)
|
|||
$(DMD) -conf= -cov=31 -unittest -main -run std\internal\windows\advapi32.d
|
||||
$(DMD) -conf= -cov=58 -unittest -main -run etc\c\zlib.d
|
||||
|
||||
html : $(DOCS)
|
||||
|
||||
changelog.html: changelog.dd
|
||||
$(DMD) -Dfchangelog.html changelog.dd
|
||||
|
||||
######################################################
|
||||
|
||||
$(ZLIB): $(SRC_ZLIB)
|
||||
|
@ -702,464 +540,6 @@ $(ZLIB): $(SRC_ZLIB)
|
|||
$(MAKE) -f win$(MODEL).mak zlib.lib CC=$(CC) LIB=$(AR)
|
||||
cd ..\..\..
|
||||
|
||||
################## DOCS ####################################
|
||||
|
||||
DDOCFLAGS=$(DFLAGS) -version=StdDdoc
|
||||
|
||||
$(DOC)\object.html : $(STDDOC) $(DRUNTIME)\src\object.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\object.html $(STDDOC) $(DRUNTIME)\src\object.d -I$(DRUNTIME)\src\
|
||||
|
||||
$(DOC)\index.html : $(STDDOC) index.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\index.html $(STDDOC) index.d
|
||||
|
||||
$(DOC)\core_atomic.html : $(STDDOC) $(DRUNTIME)\src\core\atomic.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\core_atomic.html $(STDDOC) $(DRUNTIME)\src\core\atomic.d -I$(DRUNTIME)\src\
|
||||
|
||||
$(DOC)\core_bitop.html : $(STDDOC) $(DRUNTIME)\src\core\bitop.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\core_bitop.html $(STDDOC) $(DRUNTIME)\src\core\bitop.d -I$(DRUNTIME)\src\
|
||||
|
||||
$(DOC)\core_exception.html : $(STDDOC) $(DRUNTIME)\src\core\exception.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\core_exception.html $(STDDOC) $(DRUNTIME)\src\core\exception.d -I$(DRUNTIME)\src\
|
||||
|
||||
$(DOC)\core_memory.html : $(STDDOC) $(DRUNTIME)\src\core\memory.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\core_memory.html $(STDDOC) $(DRUNTIME)\src\core\memory.d -I$(DRUNTIME)\src\
|
||||
|
||||
$(DOC)\core_runtime.html : $(STDDOC) $(DRUNTIME)\src\core\runtime.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\core_runtime.html $(STDDOC) $(DRUNTIME)\src\core\runtime.d -I$(DRUNTIME)\src\
|
||||
|
||||
$(DOC)\core_simd.html : $(STDDOC) $(DRUNTIME)\src\core\simd.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\core_simd.html $(STDDOC) $(DRUNTIME)\src\core\simd.d -I$(DRUNTIME)\src\
|
||||
|
||||
$(DOC)\core_time.html : $(STDDOC) $(DRUNTIME)\src\core\time.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\core_time.html $(STDDOC) $(DRUNTIME)\src\core\time.d -I$(DRUNTIME)\src\
|
||||
|
||||
$(DOC)\core_thread.html : $(STDDOC) $(DRUNTIME)\src\core\thread.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\core_thread.html $(STDDOC) $(DRUNTIME)\src\core\thread.d -I$(DRUNTIME)\src\
|
||||
|
||||
$(DOC)\core_vararg.html : $(STDDOC) $(DRUNTIME)\src\core\vararg.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\core_vararg.html $(STDDOC) $(DRUNTIME)\src\core\vararg.d -I$(DRUNTIME)\src\
|
||||
|
||||
$(DOC)\core_sync_barrier.html : $(STDDOC) $(DRUNTIME)\src\core\sync\barrier.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\core_sync_barrier.html $(STDDOC) $(DRUNTIME)\src\core\sync\barrier.d -I$(DRUNTIME)\src\
|
||||
|
||||
$(DOC)\core_sync_condition.html : $(STDDOC) $(DRUNTIME)\src\core\sync\condition.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\core_sync_condition.html $(STDDOC) $(DRUNTIME)\src\core\sync\condition.d -I$(DRUNTIME)\src\
|
||||
|
||||
$(DOC)\core_sync_config.html : $(STDDOC) $(DRUNTIME)\src\core\sync\config.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\core_sync_config.html $(STDDOC) $(DRUNTIME)\src\core\sync\config.d -I$(DRUNTIME)\src\
|
||||
|
||||
$(DOC)\core_sync_exception.html : $(STDDOC) $(DRUNTIME)\src\core\sync\exception.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\core_sync_exception.html $(STDDOC) $(DRUNTIME)\src\core\sync\exception.d -I$(DRUNTIME)\src\
|
||||
|
||||
$(DOC)\core_sync_mutex.html : $(STDDOC) $(DRUNTIME)\src\core\sync\mutex.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\core_sync_mutex.html $(STDDOC) $(DRUNTIME)\src\core\sync\mutex.d -I$(DRUNTIME)\src\
|
||||
|
||||
$(DOC)\core_sync_rwmutex.html : $(STDDOC) $(DRUNTIME)\src\core\sync\rwmutex.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\core_sync_rwmutex.html $(STDDOC) $(DRUNTIME)\src\core\sync\rwmutex.d -I$(DRUNTIME)\src\
|
||||
|
||||
$(DOC)\core_sync_semaphore.html : $(STDDOC) $(DRUNTIME)\src\core\sync\semaphore.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\core_sync_semaphore.html $(STDDOC) $(DRUNTIME)\src\core\sync\semaphore.d -I$(DRUNTIME)\src\
|
||||
|
||||
$(DOC)\std_algorithm.html : $(STDDOC) std\algorithm\package.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_algorithm.html $(STDDOC) std\algorithm\package.d
|
||||
|
||||
$(DOC)\std_algorithm_comparison.html : $(STDDOC) std\algorithm\comparison.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_algorithm_comparison.html $(STDDOC) std\algorithm\comparison.d
|
||||
|
||||
$(DOC)\std_algorithm_iteration.html : $(STDDOC) std\algorithm\iteration.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_algorithm_iteration.html $(STDDOC) std\algorithm\iteration.d
|
||||
|
||||
$(DOC)\std_algorithm_mutation.html : $(STDDOC) std\algorithm\mutation.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_algorithm_mutation.html $(STDDOC) std\algorithm\mutation.d
|
||||
|
||||
$(DOC)\std_algorithm_searching.html : $(STDDOC) std\algorithm\searching.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_algorithm_searching.html $(STDDOC) std\algorithm\searching.d
|
||||
|
||||
$(DOC)\std_algorithm_setops.html : $(STDDOC) std\algorithm\setops.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_algorithm_setops.html $(STDDOC) std\algorithm\setops.d
|
||||
|
||||
$(DOC)\std_algorithm_sorting.html : $(STDDOC) std\algorithm\sorting.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_algorithm_sorting.html $(STDDOC) std\algorithm\sorting.d
|
||||
|
||||
$(DOC)\std_array.html : $(STDDOC) std\array.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_array.html $(STDDOC) std\array.d
|
||||
|
||||
$(DOC)\std_ascii.html : $(STDDOC) std\ascii.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_ascii.html $(STDDOC) std\ascii.d
|
||||
|
||||
$(DOC)\std_base64.html : $(STDDOC) std\base64.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_base64.html $(STDDOC) std\base64.d
|
||||
|
||||
$(DOC)\std_bigint.html : $(STDDOC) std\bigint.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_bigint.html $(STDDOC) std\bigint.d
|
||||
|
||||
$(DOC)\std_bitmanip.html : $(STDDOC) std\bitmanip.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_bitmanip.html $(STDDOC) std\bitmanip.d
|
||||
|
||||
$(DOC)\std_concurrency.html : $(STDDOC) std\concurrency.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_concurrency.html $(STDDOC) std\concurrency.d
|
||||
|
||||
$(DOC)\std_compiler.html : $(STDDOC) std\compiler.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_compiler.html $(STDDOC) std\compiler.d
|
||||
|
||||
$(DOC)\std_complex.html : $(STDDOC) std\complex.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_complex.html $(STDDOC) std\complex.d
|
||||
|
||||
$(DOC)\std_conv.html : $(STDDOC) std\conv.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_conv.html $(STDDOC) std\conv.d
|
||||
|
||||
$(DOC)\std_container_array.html : $(STDDOC) std\container\array.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_container_array.html $(STDDOC) std\container\array.d
|
||||
|
||||
$(DOC)\std_container_binaryheap.html : $(STDDOC) std\container\binaryheap.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_container_binaryheap.html $(STDDOC) std\container\binaryheap.d
|
||||
|
||||
$(DOC)\std_container_dlist.html : $(STDDOC) std\container\dlist.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_container_dlist.html $(STDDOC) std\container\dlist.d
|
||||
|
||||
$(DOC)\std_container_rbtree.html : $(STDDOC) std\container\rbtree.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_container_rbtree.html $(STDDOC) std\container\rbtree.d
|
||||
|
||||
$(DOC)\std_container_slist.html : $(STDDOC) std\container\slist.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_container_slist.html $(STDDOC) std\container\slist.d
|
||||
|
||||
$(DOC)\std_container_util.html : $(STDDOC) std\container\util.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_container_util.html $(STDDOC) std\container\util.d
|
||||
|
||||
$(DOC)\std_container.html : $(STDDOC) std\container\package.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_container.html $(STDDOC) std\container\package.d
|
||||
|
||||
$(DOC)\std_range.html : $(STDDOC) std\range\package.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_range.html $(STDDOC) std\range\package.d
|
||||
|
||||
$(DOC)\std_range_primitives.html : $(STDDOC) std\range\primitives.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_range_primitives.html $(STDDOC) std\range\primitives.d
|
||||
|
||||
$(DOC)\std_range_interfaces.html : $(STDDOC) std\range\interfaces.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_range_interfaces.html $(STDDOC) std\range\interfaces.d
|
||||
|
||||
$(DOC)\std_csv.html : $(STDDOC) std\csv.d
|
||||
$(DMD) -c -o- $(DFLAGS) -Df$(DOC)\std_csv.html $(STDDOC) std\csv.d
|
||||
|
||||
$(DOC)\std_datetime.html : $(STDDOC) std\datetime\package.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_datetime.html $(STDDOC) std\datetime\package.d
|
||||
|
||||
$(DOC)\std_datetime_date.html : $(STDDOC) std\datetime\date.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_datetime_date.html $(STDDOC) std\datetime\date.d
|
||||
|
||||
$(DOC)\std_datetime_interval.html : $(STDDOC) std\datetime\interval.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_datetime_interval.html $(STDDOC) std\datetime\interval.d
|
||||
|
||||
$(DOC)\std_datetime_stopwatch.html : $(STDDOC) std\datetime\stopwatch.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_datetime_stopwatch.html $(STDDOC) std\datetime\stopwatch.d
|
||||
|
||||
$(DOC)\std_datetime_systime.html : $(STDDOC) std\datetime\systime.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_datetime_systime.html $(STDDOC) std\datetime\systime.d
|
||||
|
||||
$(DOC)\std_datetime_timezone.html : $(STDDOC) std\datetime\timezone.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_datetime_timezone.html $(STDDOC) std\datetime\timezone.d
|
||||
|
||||
$(DOC)\std_demangle.html : $(STDDOC) std\demangle.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_demangle.html $(STDDOC) std\demangle.d
|
||||
|
||||
$(DOC)\std_exception.html : $(STDDOC) std\exception.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_exception.html $(STDDOC) std\exception.d
|
||||
|
||||
$(DOC)\std_file.html : $(STDDOC) std\file.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_file.html $(STDDOC) std\file.d
|
||||
|
||||
$(DOC)\std_format.html : $(STDDOC) std\format.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_format.html $(STDDOC) std\format.d
|
||||
|
||||
$(DOC)\std_functional.html : $(STDDOC) std\functional.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_functional.html $(STDDOC) std\functional.d
|
||||
|
||||
$(DOC)\std_getopt.html : $(STDDOC) std\getopt.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_getopt.html $(STDDOC) std\getopt.d
|
||||
|
||||
$(DOC)\std_json.html : $(STDDOC) std\json.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_json.html $(STDDOC) std\json.d
|
||||
|
||||
$(DOC)\std_math.html : $(STDDOC) std\math.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_math.html $(STDDOC) std\math.d
|
||||
|
||||
$(DOC)\std_meta.html : $(STDDOC) std\meta.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_meta.html $(STDDOC) std\meta.d
|
||||
|
||||
$(DOC)\std_mathspecial.html : $(STDDOC) std\mathspecial.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_mathspecial.html $(STDDOC) std\mathspecial.d
|
||||
|
||||
$(DOC)\std_mmfile.html : $(STDDOC) std\mmfile.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_mmfile.html $(STDDOC) std\mmfile.d
|
||||
|
||||
$(DOC)\std_numeric.html : $(STDDOC) std\numeric.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_numeric.html $(STDDOC) std\numeric.d
|
||||
|
||||
$(DOC)\std_outbuffer.html : $(STDDOC) std\outbuffer.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_outbuffer.html $(STDDOC) std\outbuffer.d
|
||||
|
||||
$(DOC)\std_parallelism.html : $(STDDOC) std\parallelism.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_parallelism.html $(STDDOC) std\parallelism.d
|
||||
|
||||
$(DOC)\std_path.html : $(STDDOC) std\path.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_path.html $(STDDOC) std\path.d
|
||||
|
||||
$(DOC)\std_process.html : $(STDDOC) std\process.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_process.html $(STDDOC) std\process.d
|
||||
|
||||
$(DOC)\std_random.html : $(STDDOC) std\random.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_random.html $(STDDOC) std\random.d
|
||||
|
||||
$(DOC)\std_range.html : $(STDDOC) std\range\package.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_range.html $(STDDOC) std\range\package.d
|
||||
|
||||
$(DOC)\std_regex.html : $(STDDOC) std\regex\package.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_regex.html $(STDDOC) std\regex\package.d
|
||||
|
||||
$(DOC)\std_signals.html : $(STDDOC) std\signals.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_signals.html $(STDDOC) std\signals.d
|
||||
|
||||
$(DOC)\std_socket.html : $(STDDOC) std\socket.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_socket.html $(STDDOC) std\socket.d
|
||||
|
||||
$(DOC)\std_stdint.html : $(STDDOC) std\stdint.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_stdint.html $(STDDOC) std\stdint.d
|
||||
|
||||
$(DOC)\std_stdio.html : $(STDDOC) std\stdio.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_stdio.html $(STDDOC) std\stdio.d
|
||||
|
||||
$(DOC)\std_string.html : $(STDDOC) std\string.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_string.html $(STDDOC) std\string.d
|
||||
|
||||
$(DOC)\std_system.html : $(STDDOC) std\system.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_system.html $(STDDOC) std\system.d
|
||||
|
||||
$(DOC)\std_traits.html : $(STDDOC) std\traits.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_traits.html $(STDDOC) std\traits.d
|
||||
|
||||
$(DOC)\std_typecons.html : $(STDDOC) std\typecons.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_typecons.html $(STDDOC) std\typecons.d
|
||||
|
||||
$(DOC)\std_typetuple.html : $(STDDOC) std\typetuple.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_typetuple.html $(STDDOC) std\typetuple.d
|
||||
|
||||
$(DOC)\std_uni.html : $(STDDOC) std\uni.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_uni.html $(STDDOC) std\uni.d
|
||||
|
||||
$(DOC)\std_uri.html : $(STDDOC) std\uri.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_uri.html $(STDDOC) std\uri.d
|
||||
|
||||
$(DOC)\std_utf.html : $(STDDOC) std\utf.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_utf.html $(STDDOC) std\utf.d
|
||||
|
||||
$(DOC)\std_uuid.html : $(STDDOC) std\uuid.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_uuid.html $(STDDOC) std\uuid.d
|
||||
|
||||
$(DOC)\std_variant.html : $(STDDOC) std\variant.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_variant.html $(STDDOC) std\variant.d
|
||||
|
||||
$(DOC)\std_xml.html : $(STDDOC) std\xml.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_xml.html $(STDDOC) std\xml.d
|
||||
|
||||
$(DOC)\std_encoding.html : $(STDDOC) std\encoding.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_encoding.html $(STDDOC) std\encoding.d
|
||||
|
||||
$(DOC)\std_zip.html : $(STDDOC) std\zip.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_zip.html $(STDDOC) std\zip.d
|
||||
|
||||
$(DOC)\std_zlib.html : $(STDDOC) std\zlib.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_zlib.html $(STDDOC) std\zlib.d
|
||||
|
||||
$(DOC)\std_net_isemail.html : $(STDDOC) std\net\isemail.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_net_isemail.html $(STDDOC) std\net\isemail.d
|
||||
|
||||
$(DOC)\std_net_curl.html : $(STDDOC) std\net\curl.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_net_curl.html $(STDDOC) std\net\curl.d
|
||||
|
||||
$(DOC)\std_experimental_logger_core.html : $(STDDOC) std\experimental\logger\core.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_logger_core.html $(STDDOC) std\experimental\logger\core.d
|
||||
|
||||
$(DOC)\std_experimental_logger_multilogger.html : $(STDDOC) std\experimental\logger\multilogger.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_logger_multilogger.html $(STDDOC) std\experimental\logger\multilogger.d
|
||||
|
||||
$(DOC)\std_experimental_logger_filelogger.html : $(STDDOC) std\experimental\logger\filelogger.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_logger_filelogger.html $(STDDOC) std\experimental\logger\filelogger.d
|
||||
|
||||
$(DOC)\std_experimental_logger_nulllogger.html : $(STDDOC) std\experimental\logger\nulllogger.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_logger_nulllogger.html $(STDDOC) std\experimental\logger\nulllogger.d
|
||||
|
||||
$(DOC)\std_experimental_logger.html : $(STDDOC) std\experimental\logger\package.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_logger.html $(STDDOC) std\experimental\logger\package.d
|
||||
|
||||
$(DOC)\std_experimental_allocator_building_blocks_affix_allocator.html : $(STDDOC) std\experimental\allocator\building_blocks\affix_allocator.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_allocator_building_blocks_affix_allocator.html \
|
||||
$(STDDOC) std\experimental\allocator\building_blocks\affix_allocator.d
|
||||
|
||||
$(DOC)\std_experimental_allocator_building_blocks_allocator_list.html : $(STDDOC) std\experimental\allocator\building_blocks\allocator_list.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_allocator_building_blocks_allocator_list.html \
|
||||
$(STDDOC) std\experimental\allocator\building_blocks\allocator_list.d
|
||||
|
||||
$(DOC)\std_experimental_allocator_building_blocks_ascending_page_allocator.html : $(STDDOC) std\experimental\allocator\building_blocks\ascending_page_allocator.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_allocator_building_blocks_ascending_page_allocator.html \
|
||||
$(STDDOC) std\experimental\allocator\building_blocks\ascending_page_allocator.d
|
||||
|
||||
$(DOC)\std_experimental_allocator_building_blocks_bitmapped_block.html : $(STDDOC) std\experimental\allocator\building_blocks\bitmapped_block.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_allocator_building_blocks_bitmapped_block.html \
|
||||
$(STDDOC) std\experimental\allocator\building_blocks\bitmapped_block.d
|
||||
|
||||
$(DOC)\std_experimental_allocator_building_blocks_bucketizer.html : $(STDDOC) std\experimental\allocator\building_blocks\bucketizer.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_allocator_building_blocks_bucketizer.html \
|
||||
$(STDDOC) std\experimental\allocator\building_blocks\bucketizer.d
|
||||
|
||||
$(DOC)\std_experimental_allocator_building_blocks_fallback_allocator.html : $(STDDOC) std\experimental\allocator\building_blocks\fallback_allocator.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_allocator_building_blocks_fallback_allocator.html \
|
||||
$(STDDOC) std\experimental\allocator\building_blocks\fallback_allocator.d
|
||||
|
||||
$(DOC)\std_experimental_allocator_building_blocks_free_list.html : $(STDDOC) std\experimental\allocator\building_blocks\free_list.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_allocator_building_blocks_free_list.html \
|
||||
$(STDDOC) std\experimental\allocator\building_blocks\free_list.d
|
||||
|
||||
$(DOC)\std_experimental_allocator_building_blocks_free_tree.html : $(STDDOC) std\experimental\allocator\building_blocks\free_tree.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_allocator_building_blocks_free_tree.html \
|
||||
$(STDDOC) std\experimental\allocator\building_blocks\free_tree.d
|
||||
|
||||
$(DOC)\std_experimental_allocator_building_blocks_kernighan_ritchie.html : $(STDDOC) std\experimental\allocator\building_blocks\kernighan_ritchie.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_allocator_building_blocks_kernighan_ritchie.html \
|
||||
$(STDDOC) std\experimental\allocator\building_blocks\kernighan_ritchie.d
|
||||
|
||||
$(DOC)\std_experimental_allocator_building_blocks_null_allocator.html : $(STDDOC) std\experimental\allocator\building_blocks\null_allocator.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_allocator_building_blocks_null_allocator.html \
|
||||
$(STDDOC) std\experimental\allocator\building_blocks\null_allocator.d
|
||||
|
||||
$(DOC)\std_experimental_allocator_building_blocks_quantizer.html : $(STDDOC) std\experimental\allocator\building_blocks\quantizer.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_allocator_building_blocks_quantizer.html \
|
||||
$(STDDOC) std\experimental\allocator\building_blocks\quantizer.d
|
||||
|
||||
$(DOC)\std_experimental_allocator_building_blocks_region.html : $(STDDOC) std\experimental\allocator\building_blocks\region.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_allocator_building_blocks_region.html \
|
||||
$(STDDOC) std\experimental\allocator\building_blocks\region.d
|
||||
|
||||
$(DOC)\std_experimental_allocator_building_blocks_scoped_allocator.html : $(STDDOC) std\experimental\allocator\building_blocks\scoped_allocator.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_allocator_building_blocks_scoped_allocator.html \
|
||||
$(STDDOC) std\experimental\allocator\building_blocks\scoped_allocator.d
|
||||
|
||||
$(DOC)\std_experimental_allocator_building_blocks_segregator.html : $(STDDOC) std\experimental\allocator\building_blocks\segregator.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_allocator_building_blocks_segregator.html \
|
||||
$(STDDOC) std\experimental\allocator\building_blocks\segregator.d
|
||||
|
||||
$(DOC)\std_experimental_allocator_building_blocks_stats_collector.html : $(STDDOC) std\experimental\allocator\building_blocks\stats_collector.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_allocator_building_blocks_stats_collector.html \
|
||||
$(STDDOC) std\experimental\allocator\building_blocks\stats_collector.d
|
||||
|
||||
$(DOC)\std_experimental_allocator_building_blocks.html : $(STDDOC) std\experimental\allocator\building_blocks\package.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_allocator_building_blocks.html \
|
||||
$(STDDOC) std\experimental\allocator\building_blocks\package.d
|
||||
|
||||
$(DOC)\std_experimental_allocator_common.html : $(STDDOC) std\experimental\allocator\common.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_allocator_common.html $(STDDOC) std\experimental\allocator\common.d
|
||||
|
||||
$(DOC)\std_experimental_allocator_gc_allocator.html : $(STDDOC) std\experimental\allocator\gc_allocator.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_allocator_gc_allocator.html $(STDDOC) std\experimental\allocator\gc_allocator.d
|
||||
|
||||
$(DOC)\std_experimental_allocator_mallocator.html : $(STDDOC) std\experimental\allocator\mallocator.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_allocator_mallocator.html $(STDDOC) std\experimental\allocator\mallocator.d
|
||||
|
||||
$(DOC)\std_experimental_allocator_mmap_allocator.html : $(STDDOC) std\experimental\allocator\mmap_allocator.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_allocator_mmap_allocator.html $(STDDOC) std\experimental\allocator\mmap_allocator.d
|
||||
|
||||
$(DOC)\std_experimental_allocator_showcase.html : $(STDDOC) std\experimental\allocator\showcase.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_allocator_showcase.html $(STDDOC) std\experimental\allocator\showcase.d
|
||||
|
||||
$(DOC)\std_experimental_allocator_typed.html : $(STDDOC) std\experimental\allocator\typed.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_allocator_typed.html $(STDDOC) std\experimental\allocator\typed.d
|
||||
|
||||
$(DOC)\std_experimental_allocator.html : $(STDDOC) std\experimental\allocator\package.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_allocator.html $(STDDOC) std\experimental\allocator\package.d
|
||||
|
||||
$(DOC)\std_experimental_typecons.html : $(STDDOC) std\experimental\typecons.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_typecons.html $(STDDOC) std\experimental\typecons.d
|
||||
|
||||
$(DOC)\std_digest_crc.html : $(STDDOC) std\digest\crc.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_digest_crc.html $(STDDOC) std\digest\crc.d
|
||||
|
||||
$(DOC)\std_digest_sha.html : $(STDDOC) std\digest\sha.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_digest_sha.html $(STDDOC) std\digest\sha.d
|
||||
|
||||
$(DOC)\std_digest_md.html : $(STDDOC) std\digest\md.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_digest_md.html $(STDDOC) std\digest\md.d
|
||||
|
||||
$(DOC)\std_digest_ripemd.html : $(STDDOC) std\digest\ripemd.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_digest_ripemd.html $(STDDOC) std\digest\ripemd.d
|
||||
|
||||
$(DOC)\std_digest_digest.html : $(STDDOC) std\digest\digest.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_digest_digest.html $(STDDOC) std\digest\digest.d
|
||||
|
||||
$(DOC)\std_digest_hmac.html : $(STDDOC) std\digest\hmac.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_digest_hmac.html $(STDDOC) std\digest\hmac.d
|
||||
|
||||
$(DOC)\std_windows_charset.html : $(STDDOC) std\windows\charset.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_windows_charset.html $(STDDOC) std\windows\charset.d
|
||||
|
||||
$(DOC)\std_windows_registry.html : $(STDDOC) std\windows\registry.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_windows_registry.html $(STDDOC) std\windows\registry.d
|
||||
|
||||
$(DOC)\std_c_fenv.html : $(STDDOC) std\c\fenv.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_c_fenv.html $(STDDOC) std\c\fenv.d
|
||||
|
||||
$(DOC)\std_c_locale.html : $(STDDOC) std\c\locale.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_c_locale.html $(STDDOC) std\c\locale.d
|
||||
|
||||
$(DOC)\std_c_math.html : $(STDDOC) std\c\math.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_c_math.html $(STDDOC) std\c\math.d
|
||||
|
||||
$(DOC)\std_c_process.html : $(STDDOC) std\c\process.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_c_process.html $(STDDOC) std\c\process.d
|
||||
|
||||
$(DOC)\std_c_stdarg.html : $(STDDOC) std\c\stdarg.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_c_stdarg.html $(STDDOC) std\c\stdarg.d
|
||||
|
||||
$(DOC)\std_c_stddef.html : $(STDDOC) std\c\stddef.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_c_stddef.html $(STDDOC) std\c\stddef.d
|
||||
|
||||
$(DOC)\std_c_stdio.html : $(STDDOC) std\c\stdio.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_c_stdio.html $(STDDOC) std\c\stdio.d
|
||||
|
||||
$(DOC)\std_c_stdlib.html : $(STDDOC) std\c\stdlib.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_c_stdlib.html $(STDDOC) std\c\stdlib.d
|
||||
|
||||
$(DOC)\std_c_string.html : $(STDDOC) std\c\string.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_c_string.html $(STDDOC) std\c\string.d
|
||||
|
||||
$(DOC)\std_c_time.html : $(STDDOC) std\c\time.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_c_time.html $(STDDOC) std\c\time.d
|
||||
|
||||
$(DOC)\std_c_wcharh.html : $(STDDOC) std\c\wcharh.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_c_wcharh.html $(STDDOC) std\c\wcharh.d
|
||||
|
||||
$(DOC)\etc_c_curl.html : $(STDDOC) etc\c\curl.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\etc_c_curl.html $(STDDOC) etc\c\curl.d
|
||||
|
||||
$(DOC)\etc_c_sqlite3.html : $(STDDOC) etc\c\sqlite3.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\etc_c_sqlite3.html $(STDDOC) etc\c\sqlite3.d
|
||||
|
||||
$(DOC)\etc_c_zlib.html : $(STDDOC) etc\c\zlib.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\etc_c_zlib.html $(STDDOC) etc\c\zlib.d
|
||||
|
||||
$(DOC)\etc_c_odbc_sql.html : $(STDDOC) etc\c\odbc\sql.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\etc_c_odbc_sql.html $(STDDOC) etc\c\odbc\sql.d
|
||||
|
||||
$(DOC)\etc_c_odbc_sqlext.html : $(STDDOC) etc\c\odbc\sqlext.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\etc_c_odbc_sqlext.html $(STDDOC) etc\c\odbc\sqlext.d
|
||||
|
||||
$(DOC)\etc_c_odbc_sqltypes.html : $(STDDOC) etc\c\odbc\sqltypes.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\etc_c_odbc_sqltypes.html $(STDDOC) etc\c\odbc\sqltypes.d
|
||||
|
||||
$(DOC)\etc_c_odbc_sqlucode.html : $(STDDOC) etc\c\odbc\sqlucode.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\etc_c_odbc_sqlucode.html $(STDDOC) etc\c\odbc\sqlucode.d
|
||||
|
||||
$(DOC)\etc_c_odbc_sql.html : $(STDDOC) etc\c\odbc\sql.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\etc_c_odbc_sql.html $(STDDOC) etc\c\odbc\sql.d
|
||||
|
||||
######################################################
|
||||
|
||||
zip:
|
||||
|
@ -1177,15 +557,8 @@ clean:
|
|||
del $(LIB)
|
||||
del phobos.json
|
||||
|
||||
cleanhtml:
|
||||
del $(DOCS)
|
||||
|
||||
install: phobos.zip
|
||||
$(CP) phobos.lib phobos64.lib $(DIR)\windows\lib
|
||||
+rd/s/q $(DIR)\html\d\phobos
|
||||
+md $(DIR)\html\d\phobos
|
||||
$(CP) $(DOCS) $(DIR)\html\d\phobos
|
||||
$(CP) $(DOC)\index.html $(DIR)\html\d\phobos\index.html
|
||||
+rd/s/q $(DIR)\src\phobos
|
||||
unzip -o phobos.zip -d $(DIR)\src\phobos
|
||||
|
||||
|
|
623
win64.mak
623
win64.mak
|
@ -16,8 +16,6 @@
|
|||
# Build phobos32mscoff.lib, build and run unit tests
|
||||
# make cov
|
||||
# Build for coverage tests, run coverage tests
|
||||
# make html
|
||||
# Build documentation
|
||||
|
||||
## Memory model (32 or 64)
|
||||
MODEL=64
|
||||
|
@ -68,14 +66,6 @@ BUILD=release
|
|||
OS=windows
|
||||
DMD=$(DMD_DIR)\generated\$(OS)\$(BUILD)\$(MODEL)\dmd
|
||||
|
||||
## Location of where to write the html documentation files
|
||||
|
||||
DOCSRC = ../dlang.org
|
||||
STDDOC = $(DOCSRC)/html.ddoc $(DOCSRC)/dlang.org.ddoc $(DOCSRC)/std.ddoc $(DOCSRC)/macros.ddoc $(DOCSRC)/std_navbar-prerelease.ddoc project.ddoc
|
||||
|
||||
DOC=..\..\html\d\phobos
|
||||
#DOC=..\doc\phobos
|
||||
|
||||
## Zlib library
|
||||
|
||||
ZLIB=etc\c\zlib\zlib$(MODEL).lib
|
||||
|
@ -427,153 +417,6 @@ SRC_ZLIB= \
|
|||
etc\c\zlib\linux.mak \
|
||||
etc\c\zlib\osx.mak
|
||||
|
||||
|
||||
DOCS= \
|
||||
$(DOC)\object.html \
|
||||
$(DOC)\core_atomic.html \
|
||||
$(DOC)\core_bitop.html \
|
||||
$(DOC)\core_exception.html \
|
||||
$(DOC)\core_memory.html \
|
||||
$(DOC)\core_runtime.html \
|
||||
$(DOC)\core_simd.html \
|
||||
$(DOC)\core_time.html \
|
||||
$(DOC)\core_thread.html \
|
||||
$(DOC)\core_vararg.html \
|
||||
$(DOC)\core_sync_barrier.html \
|
||||
$(DOC)\core_sync_condition.html \
|
||||
$(DOC)\core_sync_config.html \
|
||||
$(DOC)\core_sync_exception.html \
|
||||
$(DOC)\core_sync_mutex.html \
|
||||
$(DOC)\core_sync_rwmutex.html \
|
||||
$(DOC)\core_sync_semaphore.html \
|
||||
$(DOC)\std_algorithm.html \
|
||||
$(DOC)\std_algorithm_comparison.html \
|
||||
$(DOC)\std_algorithm_iteration.html \
|
||||
$(DOC)\std_algorithm_mutation.html \
|
||||
$(DOC)\std_algorithm_searching.html \
|
||||
$(DOC)\std_algorithm_setops.html \
|
||||
$(DOC)\std_algorithm_sorting.html \
|
||||
$(DOC)\std_array.html \
|
||||
$(DOC)\std_ascii.html \
|
||||
$(DOC)\std_base64.html \
|
||||
$(DOC)\std_bigint.html \
|
||||
$(DOC)\std_bitmanip.html \
|
||||
$(DOC)\std_concurrency.html \
|
||||
$(DOC)\std_compiler.html \
|
||||
$(DOC)\std_complex.html \
|
||||
$(DOC)\std_container_array.html \
|
||||
$(DOC)\std_container_binaryheap.html \
|
||||
$(DOC)\std_container_dlist.html \
|
||||
$(DOC)\std_container_rbtree.html \
|
||||
$(DOC)\std_container_slist.html \
|
||||
$(DOC)\std_container.html \
|
||||
$(DOC)\std_container_util.html \
|
||||
$(DOC)\std_conv.html \
|
||||
$(DOC)\std_digest_crc.html \
|
||||
$(DOC)\std_digest_sha.html \
|
||||
$(DOC)\std_digest_md.html \
|
||||
$(DOC)\std_digest_ripemd.html \
|
||||
$(DOC)\std_digest_hmac.html \
|
||||
$(DOC)\std_digest_digest.html \
|
||||
$(DOC)\std_digest_hmac.html \
|
||||
$(DOC)\std_csv.html \
|
||||
$(DOC)\std_datetime.html \
|
||||
$(DOC)\std_datetime_date.html \
|
||||
$(DOC)\std_datetime_interval.html \
|
||||
$(DOC)\std_datetime_stopwatch.html \
|
||||
$(DOC)\std_datetime_systime.html \
|
||||
$(DOC)\std_datetime_timezone.html \
|
||||
$(DOC)\std_demangle.html \
|
||||
$(DOC)\std_encoding.html \
|
||||
$(DOC)\std_exception.html \
|
||||
$(DOC)\std_file.html \
|
||||
$(DOC)\std_format.html \
|
||||
$(DOC)\std_functional.html \
|
||||
$(DOC)\std_getopt.html \
|
||||
$(DOC)\std_json.html \
|
||||
$(DOC)\std_math.html \
|
||||
$(DOC)\std_mathspecial.html \
|
||||
$(DOC)\std_meta.html \
|
||||
$(DOC)\std_mmfile.html \
|
||||
$(DOC)\std_numeric.html \
|
||||
$(DOC)\std_outbuffer.html \
|
||||
$(DOC)\std_parallelism.html \
|
||||
$(DOC)\std_path.html \
|
||||
$(DOC)\std_process.html \
|
||||
$(DOC)\std_random.html \
|
||||
$(DOC)\std_range.html \
|
||||
$(DOC)\std_range_primitives.html \
|
||||
$(DOC)\std_range_interfaces.html \
|
||||
$(DOC)\std_regex.html \
|
||||
$(DOC)\std_signals.html \
|
||||
$(DOC)\std_socket.html \
|
||||
$(DOC)\std_stdint.html \
|
||||
$(DOC)\std_stdio.html \
|
||||
$(DOC)\std_string.html \
|
||||
$(DOC)\std_system.html \
|
||||
$(DOC)\std_traits.html \
|
||||
$(DOC)\std_typecons.html \
|
||||
$(DOC)\std_typetuple.html \
|
||||
$(DOC)\std_uni.html \
|
||||
$(DOC)\std_uri.html \
|
||||
$(DOC)\std_utf.html \
|
||||
$(DOC)\std_uuid.html \
|
||||
$(DOC)\std_variant.html \
|
||||
$(DOC)\std_xml.html \
|
||||
$(DOC)\std_zip.html \
|
||||
$(DOC)\std_zlib.html \
|
||||
$(DOC)\std_net_isemail.html \
|
||||
$(DOC)\std_net_curl.html \
|
||||
$(DOC)\std_experimental_logger_core.html \
|
||||
$(DOC)\std_experimental_logger_filelogger.html \
|
||||
$(DOC)\std_experimental_logger_multilogger.html \
|
||||
$(DOC)\std_experimental_logger_nulllogger.html \
|
||||
$(DOC)\std_experimental_logger.html \
|
||||
$(DOC)\std_experimental_allocator_building_blocks_affix_allocator.html \
|
||||
$(DOC)\std_experimental_allocator_building_blocks_allocator_list.html \
|
||||
$(DOC)\std_experimental_allocator_building_blocks_ascending_page_allocator.html \
|
||||
$(DOC)\std_experimental_allocator_building_blocks_bitmapped_block.html \
|
||||
$(DOC)\std_experimental_allocator_building_blocks_bucketizer.html \
|
||||
$(DOC)\std_experimental_allocator_building_blocks_fallback_allocator.html \
|
||||
$(DOC)\std_experimental_allocator_building_blocks_free_list.html \
|
||||
$(DOC)\std_experimental_allocator_building_blocks_free_tree.html \
|
||||
$(DOC)\std_experimental_allocator_building_blocks_kernighan_ritchie.html \
|
||||
$(DOC)\std_experimental_allocator_building_blocks_null_allocator.html \
|
||||
$(DOC)\std_experimental_allocator_building_blocks_quantizer.html \
|
||||
$(DOC)\std_experimental_allocator_building_blocks_region.html \
|
||||
$(DOC)\std_experimental_allocator_building_blocks_scoped_allocator.html \
|
||||
$(DOC)\std_experimental_allocator_building_blocks_segregator.html \
|
||||
$(DOC)\std_experimental_allocator_building_blocks_stats_collector.html \
|
||||
$(DOC)\std_experimental_allocator_building_blocks.html \
|
||||
$(DOC)\std_experimental_allocator_common.html \
|
||||
$(DOC)\std_experimental_allocator_gc_allocator.html \
|
||||
$(DOC)\std_experimental_allocator_mmap_allocator.html \
|
||||
$(DOC)\std_experimental_allocator_showcase.html \
|
||||
$(DOC)\std_experimental_allocator_typed.html \
|
||||
$(DOC)\std_experimental_allocator.html \
|
||||
$(DOC)\std_experimental_typecons.html \
|
||||
$(DOC)\std_windows_charset.html \
|
||||
$(DOC)\std_windows_registry.html \
|
||||
$(DOC)\std_c_fenv.html \
|
||||
$(DOC)\std_c_locale.html \
|
||||
$(DOC)\std_c_math.html \
|
||||
$(DOC)\std_c_process.html \
|
||||
$(DOC)\std_c_stdarg.html \
|
||||
$(DOC)\std_c_stddef.html \
|
||||
$(DOC)\std_c_stdio.html \
|
||||
$(DOC)\std_c_stdlib.html \
|
||||
$(DOC)\std_c_string.html \
|
||||
$(DOC)\std_c_time.html \
|
||||
$(DOC)\std_c_wcharh.html \
|
||||
$(DOC)\etc_c_curl.html \
|
||||
$(DOC)\etc_c_sqlite3.html \
|
||||
$(DOC)\etc_c_zlib.html \
|
||||
$(DOC)\etc_c_odbc_sql.html \
|
||||
$(DOC)\etc_c_odbc_sqlext.html \
|
||||
$(DOC)\etc_c_odbc_sqltypes.html \
|
||||
$(DOC)\etc_c_odbc_sqlucode.html \
|
||||
$(DOC)\index.html
|
||||
|
||||
$(LIB) : $(SRC_TO_COMPILE) \
|
||||
$(ZLIB) $(DRUNTIMELIB) win32.mak win64.mak
|
||||
$(DMD) -lib -of$(LIB) -Xfphobos.json $(DFLAGS) $(SRC_TO_COMPILE) \
|
||||
|
@ -649,11 +492,6 @@ cov : $(SRC_TO_COMPILE) $(LIB)
|
|||
$(DMD) -conf= -m$(MODEL) -cov -unittest -ofcov.exe unittest.d $(SRC_TO_COMPILE) $(LIB)
|
||||
cov
|
||||
|
||||
html : $(DOCS)
|
||||
|
||||
changelog.html: changelog.dd
|
||||
$(DMD) -Dfchangelog.html changelog.dd
|
||||
|
||||
################### Win32 COFF support #########################
|
||||
|
||||
# default to 32-bit compiler relative to the location of the 64-bit compiler,
|
||||
|
@ -675,464 +513,6 @@ $(ZLIB): $(SRC_ZLIB)
|
|||
$(MAKE) -f win64.mak MODEL=$(MODEL) zlib$(MODEL).lib "CC=\$(CC)"\"" "LIB=\$(AR)"\"" "VCDIR=$(VCDIR)"
|
||||
cd ..\..\..
|
||||
|
||||
################## DOCS ####################################
|
||||
|
||||
DDOCFLAGS=$(DFLAGS) -version=StdDdoc
|
||||
|
||||
$(DOC)\object.html : $(STDDOC) $(DRUNTIME)\src\object.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\object.html $(STDDOC) $(DRUNTIME)\src\object.d -I$(DRUNTIME)\src\
|
||||
|
||||
$(DOC)\index.html : $(STDDOC) index.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\index.html $(STDDOC) index.d
|
||||
|
||||
$(DOC)\core_atomic.html : $(STDDOC) $(DRUNTIME)\src\core\atomic.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\core_atomic.html $(STDDOC) $(DRUNTIME)\src\core\atomic.d -I$(DRUNTIME)\src\
|
||||
|
||||
$(DOC)\core_bitop.html : $(STDDOC) $(DRUNTIME)\src\core\bitop.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\core_bitop.html $(STDDOC) $(DRUNTIME)\src\core\bitop.d -I$(DRUNTIME)\src\
|
||||
|
||||
$(DOC)\core_exception.html : $(STDDOC) $(DRUNTIME)\src\core\exception.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\core_exception.html $(STDDOC) $(DRUNTIME)\src\core\exception.d -I$(DRUNTIME)\src\
|
||||
|
||||
$(DOC)\core_memory.html : $(STDDOC) $(DRUNTIME)\src\core\memory.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\core_memory.html $(STDDOC) $(DRUNTIME)\src\core\memory.d -I$(DRUNTIME)\src\
|
||||
|
||||
$(DOC)\core_runtime.html : $(STDDOC) $(DRUNTIME)\src\core\runtime.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\core_runtime.html $(STDDOC) $(DRUNTIME)\src\core\runtime.d -I$(DRUNTIME)\src\
|
||||
|
||||
$(DOC)\core_simd.html : $(STDDOC) $(DRUNTIME)\src\core\simd.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\core_simd.html $(STDDOC) $(DRUNTIME)\src\core\simd.d -I$(DRUNTIME)\src\
|
||||
|
||||
$(DOC)\core_time.html : $(STDDOC) $(DRUNTIME)\src\core\time.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\core_time.html $(STDDOC) $(DRUNTIME)\src\core\time.d -I$(DRUNTIME)\src\
|
||||
|
||||
$(DOC)\core_thread.html : $(STDDOC) $(DRUNTIME)\src\core\thread.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\core_thread.html $(STDDOC) $(DRUNTIME)\src\core\thread.d -I$(DRUNTIME)\src\
|
||||
|
||||
$(DOC)\core_vararg.html : $(STDDOC) $(DRUNTIME)\src\core\vararg.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\core_vararg.html $(STDDOC) $(DRUNTIME)\src\core\vararg.d -I$(DRUNTIME)\src\
|
||||
|
||||
$(DOC)\core_sync_barrier.html : $(STDDOC) $(DRUNTIME)\src\core\sync\barrier.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\core_sync_barrier.html $(STDDOC) $(DRUNTIME)\src\core\sync\barrier.d -I$(DRUNTIME)\src\
|
||||
|
||||
$(DOC)\core_sync_condition.html : $(STDDOC) $(DRUNTIME)\src\core\sync\condition.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\core_sync_condition.html $(STDDOC) $(DRUNTIME)\src\core\sync\condition.d -I$(DRUNTIME)\src\
|
||||
|
||||
$(DOC)\core_sync_config.html : $(STDDOC) $(DRUNTIME)\src\core\sync\config.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\core_sync_config.html $(STDDOC) $(DRUNTIME)\src\core\sync\config.d -I$(DRUNTIME)\src\
|
||||
|
||||
$(DOC)\core_sync_exception.html : $(STDDOC) $(DRUNTIME)\src\core\sync\exception.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\core_sync_exception.html $(STDDOC) $(DRUNTIME)\src\core\sync\exception.d -I$(DRUNTIME)\src\
|
||||
|
||||
$(DOC)\core_sync_mutex.html : $(STDDOC) $(DRUNTIME)\src\core\sync\mutex.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\core_sync_mutex.html $(STDDOC) $(DRUNTIME)\src\core\sync\mutex.d -I$(DRUNTIME)\src\
|
||||
|
||||
$(DOC)\core_sync_rwmutex.html : $(STDDOC) $(DRUNTIME)\src\core\sync\rwmutex.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\core_sync_rwmutex.html $(STDDOC) $(DRUNTIME)\src\core\sync\rwmutex.d -I$(DRUNTIME)\src\
|
||||
|
||||
$(DOC)\core_sync_semaphore.html : $(STDDOC) $(DRUNTIME)\src\core\sync\semaphore.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\core_sync_semaphore.html $(STDDOC) $(DRUNTIME)\src\core\sync\semaphore.d -I$(DRUNTIME)\src\
|
||||
|
||||
$(DOC)\std_algorithm.html : $(STDDOC) std\algorithm\package.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_algorithm.html $(STDDOC) std\algorithm\package.d
|
||||
|
||||
$(DOC)\std_algorithm_comparison.html : $(STDDOC) std\algorithm\comparison.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_algorithm_comparison.html $(STDDOC) std\algorithm\comparison.d
|
||||
|
||||
$(DOC)\std_algorithm_iteration.html : $(STDDOC) std\algorithm\iteration.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_algorithm_iteration.html $(STDDOC) std\algorithm\iteration.d
|
||||
|
||||
$(DOC)\std_algorithm_mutation.html : $(STDDOC) std\algorithm\mutation.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_algorithm_mutation.html $(STDDOC) std\algorithm\mutation.d
|
||||
|
||||
$(DOC)\std_algorithm_searching.html : $(STDDOC) std\algorithm\searching.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_algorithm_searching.html $(STDDOC) std\algorithm\searching.d
|
||||
|
||||
$(DOC)\std_algorithm_setops.html : $(STDDOC) std\algorithm\setops.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_algorithm_setops.html $(STDDOC) std\algorithm\setops.d
|
||||
|
||||
$(DOC)\std_algorithm_sorting.html : $(STDDOC) std\algorithm\sorting.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_algorithm_sorting.html $(STDDOC) std\algorithm\sorting.d
|
||||
|
||||
$(DOC)\std_array.html : $(STDDOC) std\array.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_array.html $(STDDOC) std\array.d
|
||||
|
||||
$(DOC)\std_ascii.html : $(STDDOC) std\ascii.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_ascii.html $(STDDOC) std\ascii.d
|
||||
|
||||
$(DOC)\std_base64.html : $(STDDOC) std\base64.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_base64.html $(STDDOC) std\base64.d
|
||||
|
||||
$(DOC)\std_bigint.html : $(STDDOC) std\bigint.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_bigint.html $(STDDOC) std\bigint.d
|
||||
|
||||
$(DOC)\std_bitmanip.html : $(STDDOC) std\bitmanip.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_bitmanip.html $(STDDOC) std\bitmanip.d
|
||||
|
||||
$(DOC)\std_concurrency.html : $(STDDOC) std\concurrency.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_concurrency.html $(STDDOC) std\concurrency.d
|
||||
|
||||
$(DOC)\std_compiler.html : $(STDDOC) std\compiler.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_compiler.html $(STDDOC) std\compiler.d
|
||||
|
||||
$(DOC)\std_complex.html : $(STDDOC) std\complex.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_complex.html $(STDDOC) std\complex.d
|
||||
|
||||
$(DOC)\std_conv.html : $(STDDOC) std\conv.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_conv.html $(STDDOC) std\conv.d
|
||||
|
||||
$(DOC)\std_container_array.html : $(STDDOC) std\container\array.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_container_array.html $(STDDOC) std\container\array.d
|
||||
|
||||
$(DOC)\std_container_binaryheap.html : $(STDDOC) std\container\binaryheap.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_container_binaryheap.html $(STDDOC) std\container\binaryheap.d
|
||||
|
||||
$(DOC)\std_container_dlist.html : $(STDDOC) std\container\dlist.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_container_dlist.html $(STDDOC) std\container\dlist.d
|
||||
|
||||
$(DOC)\std_container_rbtree.html : $(STDDOC) std\container\rbtree.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_container_rbtree.html $(STDDOC) std\container\rbtree.d
|
||||
|
||||
$(DOC)\std_container_slist.html : $(STDDOC) std\container\slist.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_container_slist.html $(STDDOC) std\container\slist.d
|
||||
|
||||
$(DOC)\std_container_util.html : $(STDDOC) std\container\util.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_container_util.html $(STDDOC) std\container\util.d
|
||||
|
||||
$(DOC)\std_container.html : $(STDDOC) std\container\package.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_container.html $(STDDOC) std\container\package.d
|
||||
|
||||
$(DOC)\std_range.html : $(STDDOC) std\range\package.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_range.html $(STDDOC) std\range\package.d
|
||||
|
||||
$(DOC)\std_range_primitives.html : $(STDDOC) std\range\primitives.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_range_primitives.html $(STDDOC) std\range\primitives.d
|
||||
|
||||
$(DOC)\std_range_interfaces.html : $(STDDOC) std\range\interfaces.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_range_interfaces.html $(STDDOC) std\range\interfaces.d
|
||||
|
||||
$(DOC)\std_csv.html : $(STDDOC) std\csv.d
|
||||
$(DMD) -c -o- $(DFLAGS) -Df$(DOC)\std_csv.html $(STDDOC) std\csv.d
|
||||
|
||||
$(DOC)\std_datetime.html : $(STDDOC) std\datetime\package.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_datetime.html $(STDDOC) std\datetime\package.d
|
||||
|
||||
$(DOC)\std_datetime_date.html : $(STDDOC) std\datetime\date.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_datetime_date.html $(STDDOC) std\datetime\date.d
|
||||
|
||||
$(DOC)\std_datetime_interval.html : $(STDDOC) std\datetime\interval.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_datetime_interval.html $(STDDOC) std\datetime\interval.d
|
||||
|
||||
$(DOC)\std_datetime_stopwatch.html : $(STDDOC) std\datetime\stopwatch.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_datetime_stopwatch.html $(STDDOC) std\datetime\stopwatch.d
|
||||
|
||||
$(DOC)\std_datetime_systime.html : $(STDDOC) std\datetime\systime.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_datetime_systime.html $(STDDOC) std\datetime\systime.d
|
||||
|
||||
$(DOC)\std_datetime_timezone.html : $(STDDOC) std\datetime\timezone.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_datetime_timezone.html $(STDDOC) std\datetime\timezone.d
|
||||
|
||||
$(DOC)\std_demangle.html : $(STDDOC) std\demangle.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_demangle.html $(STDDOC) std\demangle.d
|
||||
|
||||
$(DOC)\std_exception.html : $(STDDOC) std\exception.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_exception.html $(STDDOC) std\exception.d
|
||||
|
||||
$(DOC)\std_file.html : $(STDDOC) std\file.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_file.html $(STDDOC) std\file.d
|
||||
|
||||
$(DOC)\std_format.html : $(STDDOC) std\format.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_format.html $(STDDOC) std\format.d
|
||||
|
||||
$(DOC)\std_functional.html : $(STDDOC) std\functional.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_functional.html $(STDDOC) std\functional.d
|
||||
|
||||
$(DOC)\std_getopt.html : $(STDDOC) std\getopt.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_getopt.html $(STDDOC) std\getopt.d
|
||||
|
||||
$(DOC)\std_json.html : $(STDDOC) std\json.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_json.html $(STDDOC) std\json.d
|
||||
|
||||
$(DOC)\std_math.html : $(STDDOC) std\math.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_math.html $(STDDOC) std\math.d
|
||||
|
||||
$(DOC)\std_meta.html : $(STDDOC) std\meta.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_meta.html $(STDDOC) std\meta.d
|
||||
|
||||
$(DOC)\std_mathspecial.html : $(STDDOC) std\mathspecial.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_mathspecial.html $(STDDOC) std\mathspecial.d
|
||||
|
||||
$(DOC)\std_mmfile.html : $(STDDOC) std\mmfile.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_mmfile.html $(STDDOC) std\mmfile.d
|
||||
|
||||
$(DOC)\std_numeric.html : $(STDDOC) std\numeric.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_numeric.html $(STDDOC) std\numeric.d
|
||||
|
||||
$(DOC)\std_outbuffer.html : $(STDDOC) std\outbuffer.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_outbuffer.html $(STDDOC) std\outbuffer.d
|
||||
|
||||
$(DOC)\std_parallelism.html : $(STDDOC) std\parallelism.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_parallelism.html $(STDDOC) std\parallelism.d
|
||||
|
||||
$(DOC)\std_path.html : $(STDDOC) std\path.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_path.html $(STDDOC) std\path.d
|
||||
|
||||
$(DOC)\std_process.html : $(STDDOC) std\process.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_process.html $(STDDOC) std\process.d
|
||||
|
||||
$(DOC)\std_random.html : $(STDDOC) std\random.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_random.html $(STDDOC) std\random.d
|
||||
|
||||
$(DOC)\std_range.html : $(STDDOC) std\range\package.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_range.html $(STDDOC) std\range\package.d
|
||||
|
||||
$(DOC)\std_regex.html : $(STDDOC) std\regex\package.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_regex.html $(STDDOC) std\regex\package.d
|
||||
|
||||
$(DOC)\std_signals.html : $(STDDOC) std\signals.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_signals.html $(STDDOC) std\signals.d
|
||||
|
||||
$(DOC)\std_socket.html : $(STDDOC) std\socket.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_socket.html $(STDDOC) std\socket.d
|
||||
|
||||
$(DOC)\std_stdint.html : $(STDDOC) std\stdint.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_stdint.html $(STDDOC) std\stdint.d
|
||||
|
||||
$(DOC)\std_stdio.html : $(STDDOC) std\stdio.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_stdio.html $(STDDOC) std\stdio.d
|
||||
|
||||
$(DOC)\std_string.html : $(STDDOC) std\string.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_string.html $(STDDOC) std\string.d
|
||||
|
||||
$(DOC)\std_system.html : $(STDDOC) std\system.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_system.html $(STDDOC) std\system.d
|
||||
|
||||
$(DOC)\std_traits.html : $(STDDOC) std\traits.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_traits.html $(STDDOC) std\traits.d
|
||||
|
||||
$(DOC)\std_typecons.html : $(STDDOC) std\typecons.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_typecons.html $(STDDOC) std\typecons.d
|
||||
|
||||
$(DOC)\std_typetuple.html : $(STDDOC) std\typetuple.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_typetuple.html $(STDDOC) std\typetuple.d
|
||||
|
||||
$(DOC)\std_uni.html : $(STDDOC) std\uni.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_uni.html $(STDDOC) std\uni.d
|
||||
|
||||
$(DOC)\std_uri.html : $(STDDOC) std\uri.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_uri.html $(STDDOC) std\uri.d
|
||||
|
||||
$(DOC)\std_utf.html : $(STDDOC) std\utf.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_utf.html $(STDDOC) std\utf.d
|
||||
|
||||
$(DOC)\std_uuid.html : $(STDDOC) std\uuid.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_uuid.html $(STDDOC) std\uuid.d
|
||||
|
||||
$(DOC)\std_variant.html : $(STDDOC) std\variant.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_variant.html $(STDDOC) std\variant.d
|
||||
|
||||
$(DOC)\std_xml.html : $(STDDOC) std\xml.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_xml.html $(STDDOC) std\xml.d
|
||||
|
||||
$(DOC)\std_encoding.html : $(STDDOC) std\encoding.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_encoding.html $(STDDOC) std\encoding.d
|
||||
|
||||
$(DOC)\std_zip.html : $(STDDOC) std\zip.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_zip.html $(STDDOC) std\zip.d
|
||||
|
||||
$(DOC)\std_zlib.html : $(STDDOC) std\zlib.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_zlib.html $(STDDOC) std\zlib.d
|
||||
|
||||
$(DOC)\std_net_isemail.html : $(STDDOC) std\net\isemail.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_net_isemail.html $(STDDOC) std\net\isemail.d
|
||||
|
||||
$(DOC)\std_net_curl.html : $(STDDOC) std\net\curl.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_net_curl.html $(STDDOC) std\net\curl.d
|
||||
|
||||
$(DOC)\std_experimental_logger_core.html : $(STDDOC) std\experimental\logger\core.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_logger_core.html $(STDDOC) std\experimental\logger\core.d
|
||||
|
||||
$(DOC)\std_experimental_logger_multilogger.html : $(STDDOC) std\experimental\logger\multilogger.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_logger_multilogger.html $(STDDOC) std\experimental\logger\multilogger.d
|
||||
|
||||
$(DOC)\std_experimental_logger_filelogger.html : $(STDDOC) std\experimental\logger\filelogger.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_logger_filelogger.html $(STDDOC) std\experimental\logger\filelogger.d
|
||||
|
||||
$(DOC)\std_experimental_logger_nulllogger.html : $(STDDOC) std\experimental\logger\nulllogger.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_logger_nulllogger.html $(STDDOC) std\experimental\logger\nulllogger.d
|
||||
|
||||
$(DOC)\std_experimental_logger.html : $(STDDOC) std\experimental\logger\package.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_logger.html $(STDDOC) std\experimental\logger\package.d
|
||||
|
||||
$(DOC)\std_experimental_allocator_building_blocks_affix_allocator.html : $(STDDOC) std\experimental\allocator\building_blocks\affix_allocator.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_allocator_building_blocks_affix_allocator.html \
|
||||
$(STDDOC) std\experimental\allocator\building_blocks\affix_allocator.d
|
||||
|
||||
$(DOC)\std_experimental_allocator_building_blocks_allocator_list.html : $(STDDOC) std\experimental\allocator\building_blocks\allocator_list.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_allocator_building_blocks_allocator_list.html \
|
||||
$(STDDOC) std\experimental\allocator\building_blocks\allocator_list.d
|
||||
|
||||
$(DOC)\std_experimental_allocator_building_blocks_ascending_page_allocator.html : $(STDDOC) std\experimental\allocator\building_blocks\ascending_page_allocator.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_allocator_building_blocks_ascending_page_allocator.html \
|
||||
$(STDDOC) std\experimental\allocator\building_blocks\ascending_page_allocator.d
|
||||
|
||||
$(DOC)\std_experimental_allocator_building_blocks_bitmapped_block.html : $(STDDOC) std\experimental\allocator\building_blocks\bitmapped_block.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_allocator_building_blocks_bitmapped_block.html \
|
||||
$(STDDOC) std\experimental\allocator\building_blocks\bitmapped_block.d
|
||||
|
||||
$(DOC)\std_experimental_allocator_building_blocks_bucketizer.html : $(STDDOC) std\experimental\allocator\building_blocks\bucketizer.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_allocator_building_blocks_bucketizer.html \
|
||||
$(STDDOC) std\experimental\allocator\building_blocks\bucketizer.d
|
||||
|
||||
$(DOC)\std_experimental_allocator_building_blocks_fallback_allocator.html : $(STDDOC) std\experimental\allocator\building_blocks\fallback_allocator.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_allocator_building_blocks_fallback_allocator.html \
|
||||
$(STDDOC) std\experimental\allocator\building_blocks\fallback_allocator.d
|
||||
|
||||
$(DOC)\std_experimental_allocator_building_blocks_free_list.html : $(STDDOC) std\experimental\allocator\building_blocks\free_list.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_allocator_building_blocks_free_list.html \
|
||||
$(STDDOC) std\experimental\allocator\building_blocks\free_list.d
|
||||
|
||||
$(DOC)\std_experimental_allocator_building_blocks_free_tree.html : $(STDDOC) std\experimental\allocator\building_blocks\free_tree.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_allocator_building_blocks_free_tree.html \
|
||||
$(STDDOC) std\experimental\allocator\building_blocks\free_tree.d
|
||||
|
||||
$(DOC)\std_experimental_allocator_building_blocks_kernighan_ritchie.html : $(STDDOC) std\experimental\allocator\building_blocks\kernighan_ritchie.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_allocator_building_blocks_kernighan_ritchie.html \
|
||||
$(STDDOC) std\experimental\allocator\building_blocks\kernighan_ritchie.d
|
||||
|
||||
$(DOC)\std_experimental_allocator_building_blocks_null_allocator.html : $(STDDOC) std\experimental\allocator\building_blocks\null_allocator.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_allocator_building_blocks_null_allocator.html \
|
||||
$(STDDOC) std\experimental\allocator\building_blocks\null_allocator.d
|
||||
|
||||
$(DOC)\std_experimental_allocator_building_blocks_quantizer.html : $(STDDOC) std\experimental\allocator\building_blocks\quantizer.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_allocator_building_blocks_quantizer.html \
|
||||
$(STDDOC) std\experimental\allocator\building_blocks\quantizer.d
|
||||
|
||||
$(DOC)\std_experimental_allocator_building_blocks_region.html : $(STDDOC) std\experimental\allocator\building_blocks\region.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_allocator_building_blocks_region.html \
|
||||
$(STDDOC) std\experimental\allocator\building_blocks\region.d
|
||||
|
||||
$(DOC)\std_experimental_allocator_building_blocks_scoped_allocator.html : $(STDDOC) std\experimental\allocator\building_blocks\scoped_allocator.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_allocator_building_blocks_scoped_allocator.html \
|
||||
$(STDDOC) std\experimental\allocator\building_blocks\scoped_allocator.d
|
||||
|
||||
$(DOC)\std_experimental_allocator_building_blocks_segregator.html : $(STDDOC) std\experimental\allocator\building_blocks\segregator.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_allocator_building_blocks_segregator.html \
|
||||
$(STDDOC) std\experimental\allocator\building_blocks\segregator.d
|
||||
|
||||
$(DOC)\std_experimental_allocator_building_blocks_stats_collector.html : $(STDDOC) std\experimental\allocator\building_blocks\stats_collector.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_allocator_building_blocks_stats_collector.html \
|
||||
$(STDDOC) std\experimental\allocator\building_blocks\stats_collector.d
|
||||
|
||||
$(DOC)\std_experimental_allocator_building_blocks.html : $(STDDOC) std\experimental\allocator\building_blocks\package.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_allocator_building_blocks.html \
|
||||
$(STDDOC) std\experimental\allocator\building_blocks\package.d
|
||||
|
||||
$(DOC)\std_experimental_allocator_common.html : $(STDDOC) std\experimental\allocator\common.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_allocator_common.html $(STDDOC) std\experimental\allocator\common.d
|
||||
|
||||
$(DOC)\std_experimental_allocator_gc_allocator.html : $(STDDOC) std\experimental\allocator\gc_allocator.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_allocator_gc_allocator.html $(STDDOC) std\experimental\allocator\gc_allocator.d
|
||||
|
||||
$(DOC)\std_experimental_allocator_mallocator.html : $(STDDOC) std\experimental\allocator\mallocator.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_allocator_mallocator.html $(STDDOC) std\experimental\allocator\mallocator.d
|
||||
|
||||
$(DOC)\std_experimental_allocator_mmap_allocator.html : $(STDDOC) std\experimental\allocator\mmap_allocator.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_allocator_mmap_allocator.html $(STDDOC) std\experimental\allocator\mmap_allocator.d
|
||||
|
||||
$(DOC)\std_experimental_allocator_showcase.html : $(STDDOC) std\experimental\allocator\showcase.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_allocator_showcase.html $(STDDOC) std\experimental\allocator\showcase.d
|
||||
|
||||
$(DOC)\std_experimental_allocator_typed.html : $(STDDOC) std\experimental\allocator\typed.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_allocator_typed.html $(STDDOC) std\experimental\allocator\typed.d
|
||||
|
||||
$(DOC)\std_experimental_allocator.html : $(STDDOC) std\experimental\allocator\package.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_allocator.html $(STDDOC) std\experimental\allocator\package.d
|
||||
|
||||
$(DOC)\std_experimental_typecons.html : $(STDDOC) std\experimental\typecons.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_experimental_typecons.html $(STDDOC) std\experimental\typecons.d
|
||||
|
||||
$(DOC)\std_digest_crc.html : $(STDDOC) std\digest\crc.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_digest_crc.html $(STDDOC) std\digest\crc.d
|
||||
|
||||
$(DOC)\std_digest_sha.html : $(STDDOC) std\digest\sha.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_digest_sha.html $(STDDOC) std\digest\sha.d
|
||||
|
||||
$(DOC)\std_digest_md.html : $(STDDOC) std\digest\md.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_digest_md.html $(STDDOC) std\digest\md.d
|
||||
|
||||
$(DOC)\std_digest_ripemd.html : $(STDDOC) std\digest\ripemd.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_digest_ripemd.html $(STDDOC) std\digest\ripemd.d
|
||||
|
||||
$(DOC)\std_digest_digest.html : $(STDDOC) std\digest\digest.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_digest_digest.html $(STDDOC) std\digest\digest.d
|
||||
|
||||
$(DOC)\std_digest_hmac.html : $(STDDOC) std\digest\hmac.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_digest_hmac.html $(STDDOC) std\digest\hmac.d
|
||||
|
||||
$(DOC)\std_windows_charset.html : $(STDDOC) std\windows\charset.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_windows_charset.html $(STDDOC) std\windows\charset.d
|
||||
|
||||
$(DOC)\std_windows_registry.html : $(STDDOC) std\windows\registry.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_windows_registry.html $(STDDOC) std\windows\registry.d
|
||||
|
||||
$(DOC)\std_c_fenv.html : $(STDDOC) std\c\fenv.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_c_fenv.html $(STDDOC) std\c\fenv.d
|
||||
|
||||
$(DOC)\std_c_locale.html : $(STDDOC) std\c\locale.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_c_locale.html $(STDDOC) std\c\locale.d
|
||||
|
||||
$(DOC)\std_c_math.html : $(STDDOC) std\c\math.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_c_math.html $(STDDOC) std\c\math.d
|
||||
|
||||
$(DOC)\std_c_process.html : $(STDDOC) std\c\process.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_c_process.html $(STDDOC) std\c\process.d
|
||||
|
||||
$(DOC)\std_c_stdarg.html : $(STDDOC) std\c\stdarg.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_c_stdarg.html $(STDDOC) std\c\stdarg.d
|
||||
|
||||
$(DOC)\std_c_stddef.html : $(STDDOC) std\c\stddef.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_c_stddef.html $(STDDOC) std\c\stddef.d
|
||||
|
||||
$(DOC)\std_c_stdio.html : $(STDDOC) std\c\stdio.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_c_stdio.html $(STDDOC) std\c\stdio.d
|
||||
|
||||
$(DOC)\std_c_stdlib.html : $(STDDOC) std\c\stdlib.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_c_stdlib.html $(STDDOC) std\c\stdlib.d
|
||||
|
||||
$(DOC)\std_c_string.html : $(STDDOC) std\c\string.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_c_string.html $(STDDOC) std\c\string.d
|
||||
|
||||
$(DOC)\std_c_time.html : $(STDDOC) std\c\time.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_c_time.html $(STDDOC) std\c\time.d
|
||||
|
||||
$(DOC)\std_c_wcharh.html : $(STDDOC) std\c\wcharh.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_c_wcharh.html $(STDDOC) std\c\wcharh.d
|
||||
|
||||
$(DOC)\etc_c_curl.html : $(STDDOC) etc\c\curl.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\etc_c_curl.html $(STDDOC) etc\c\curl.d
|
||||
|
||||
$(DOC)\etc_c_sqlite3.html : $(STDDOC) etc\c\sqlite3.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\etc_c_sqlite3.html $(STDDOC) etc\c\sqlite3.d
|
||||
|
||||
$(DOC)\etc_c_zlib.html : $(STDDOC) etc\c\zlib.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\etc_c_zlib.html $(STDDOC) etc\c\zlib.d
|
||||
|
||||
$(DOC)\etc_c_odbc_sql.html : $(STDDOC) etc\c\odbc\sql.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\etc_c_odbc_sql.html $(STDDOC) etc\c\odbc\sql.d
|
||||
|
||||
$(DOC)\etc_c_odbc_sqlext.html : $(STDDOC) etc\c\odbc\sqlext.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\etc_c_odbc_sqlext.html $(STDDOC) etc\c\odbc\sqlext.d
|
||||
|
||||
$(DOC)\etc_c_odbc_sqltypes.html : $(STDDOC) etc\c\odbc\sqltypes.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\etc_c_odbc_sqltypes.html $(STDDOC) etc\c\odbc\sqltypes.d
|
||||
|
||||
$(DOC)\etc_c_odbc_sqlucode.html : $(STDDOC) etc\c\odbc\sqlucode.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\etc_c_odbc_sqlucode.html $(STDDOC) etc\c\odbc\sqlucode.d
|
||||
|
||||
$(DOC)\etc_c_odbc_sql.html : $(STDDOC) etc\c\odbc\sql.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\etc_c_odbc_sql.html $(STDDOC) etc\c\odbc\sql.d
|
||||
|
||||
######################################################
|
||||
|
||||
zip:
|
||||
|
@ -1150,9 +530,6 @@ clean:
|
|||
del $(LIB)
|
||||
del phobos.json
|
||||
|
||||
cleanhtml:
|
||||
del $(DOCS)
|
||||
|
||||
install: phobos.zip
|
||||
$(CP) phobos.lib phobos64.lib $(DIR)\windows\lib
|
||||
+rd/s/q $(DIR)\src\phobos
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue