14 changes: 7 additions & 7 deletions version.dd
Original file line number Diff line number Diff line change
Expand Up @@ -269,13 +269,13 @@ version($(I identifier)) // add in version code if version
$(TR $(TD $(B Alpha)) $(TD The Alpha architecture))
$(TR $(TD $(B LittleEndian)) $(TD Byte order, least significant first))
$(TR $(TD $(B BigEndian)) $(TD Byte order, most significant first))
$(TR $(TD $(B D_Coverage)) $(TD $(LINK2 $(WEBURL)code_coverage.html, Code coverage analysis) instrumentation (command line $(LINK2 $(WEBURL)dmd-windows.html#switches, switch) $(B -cov)) is being generated))
$(TR $(TD $(B D_Ddoc)) $(TD $(LINK2 $(WEB ddoc.html)$(EBOOK #Embedded Documentation), Ddoc) documentation (command line $(LINK2 $(WEBURL)dmd-windows.html#switches, switch) $(B -D)) is being generated))
$(TR $(TD $(B D_InlineAsm_X86)) $(TD $(LINK2 $(WEB iasm.html)$(EBOOK #Inline Assembler), Inline assembler) for X86 is implemented))
$(TR $(TD $(B D_InlineAsm_X86_64)) $(TD $(LINK2 $(WEB iasm.html)$(EBOOK #Inline Assembler), Inline assembler) for X86-64 is implemented))
$(TR $(TD $(B D_LP64)) $(TD Pointers are 64 bits (command line $(LINK2 $(WEBURL)dmd-windows.html#switches, switch) $(B -m64))))
$(TR $(TD $(B D_PIC)) $(TD Position Independent Code (command line $(LINK2 $(WEBURL)dmd-windows.html#switches, switch) $(B -fPIC)) is being generated))
$(V2 $(TR $(TD $(B unittest)) $(TD $(LINK2 $(WEB unittest.html)$(EBOOK #Unit Tests), Unit tests) are enabled (command line $(LINK2 $(WEBURL)dmd-windows.html#switches, switch) $(B -unittest)))))
$(TR $(TD $(B D_Coverage)) $(TD $(DPLLINK code_coverage.html, Code coverage analysis) instrumentation (command line $(DPLLINK dmd-windows.html#switches, switch) $(B -cov)) is being generated))
$(TR $(TD $(B D_Ddoc)) $(TD $(DDLINK ddoc, Embedded Documentation, Ddoc) documentation (command line $(DPLLINK dmd-windows.html#switches, switch) $(B -D)) is being generated))
$(TR $(TD $(B D_InlineAsm_X86)) $(TD $(DDLINK iasm, Inline Assembler, Inline assembler) for X86 is implemented))
$(TR $(TD $(B D_InlineAsm_X86_64)) $(TD $(DDLINK iasm, Inline Assembler, Inline assembler) for X86-64 is implemented))
$(TR $(TD $(B D_LP64)) $(TD Pointers are 64 bits (command line $(DPLLINK dmd-windows.html#switches, switch) $(B -m64))))
$(TR $(TD $(B D_PIC)) $(TD Position Independent Code (command line $(DPLLINK dmd-windows.html#switches, switch) $(B -fPIC)) is being generated))
$(V2 $(TR $(TD $(B unittest)) $(TD $(DDLINK unittest, Unit Tests, Unit tests) are enabled (command line $(DPLLINK dmd-windows.html#switches, switch) $(B -unittest)))))
$(V2 $(TR $(TD $(B D_Version2)) $(TD This is a D version 2 compiler)))
$(TR $(TD $(B none)) $(TD Never defined; used to just disable a section of code))
$(TR $(TD $(B all)) $(TD Always defined; used as the opposite of $(B none)))
Expand Down
6 changes: 2 additions & 4 deletions win32.mak
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
DMD=dmd

SRC= $(SPECSRC) cpptod.dd ctod.dd pretod.dd cppdbc.dd index.dd \
overview.dd dnews.dd mixin.dd memory.dd interface.dd windows.dd \
overview.dd mixin.dd memory.dd interface.dd windows.dd \
dll.dd htomodule.dd faq.dd dstyle.dd wc.dd changelog.dd \
glossary.dd acknowledgements.dd dcompiler.dd builtin.dd \
comparison.dd rationale.dd code_coverage.dd exception-safe.dd \
Expand Down Expand Up @@ -31,7 +31,7 @@ IMG=dmlogo.gif cpp1.gif d002.ico c1.gif d3.gif d4.gif d5.gif favicon.gif
PREMADE=download.html dcompiler.html language-reference.html appendices.html howtos.html articles.html

TARGETS=cpptod.html ctod.html pretod.html cppdbc.html index.html \
overview.html lex.html module.html dnews.html declaration.html \
overview.html lex.html module.html declaration.html \
type.html property.html attribute.html pragma.html \
expression.html statement.html arrays.html struct.html class.html \
enum.html function.html operatoroverloading.html template.html \
Expand Down Expand Up @@ -155,8 +155,6 @@ declaration.html : $(DDOC) declaration.dd

dll.html : $(DDOC) dll.dd

dnews.html : $(DDOC) dnews.dd

dstyle.html : $(DDOC) dstyle.dd

entity.html : $(DDOC) entity.dd
Expand Down