diff options
author | Yang Tse <yangsita@gmail.com> | 2009-11-27 05:24:44 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2009-11-27 05:24:44 +0000 |
commit | b1a35cd3ac0f855789db903abc9b56c21840bbcc (patch) | |
tree | a756e63b6f692bcf470d13baf95be3989271bd98 | |
parent | 9cbf69ca0b62e2096dea7e3d45ee49338730adc4 (diff) |
Preserve empty line following last target
-rw-r--r-- | ares/Makefile.msvc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ares/Makefile.msvc b/ares/Makefile.msvc index 2a6cc1e61..f423e0331 100644 --- a/ares/Makefile.msvc +++ b/ares/Makefile.msvc @@ -228,7 +228,7 @@ PDBTYPE_CONSOLIDATE = /pdbtype:consolidate CC_CMD_REL = cl.exe /nologo $(RTLIB) /DNDEBUG /O2 CC_CMD_DBG = cl.exe /nologo $(RTLIBD) /D_DEBUG /Od /Zi /GZ -CC_CFLAGS = $(CFLAGS) /I. /W3 /GX /FD +CC_CFLAGS = $(CFLAGS) /I. /W3 /GX /FD RC_CMD_REL = rc.exe /l 0x409 /d "NDEBUG" RC_CMD_DBG = rc.exe /l 0x409 /d "_DEBUG" @@ -463,3 +463,5 @@ $(PROG2_DIR): $(BASE_DIR) $(PROG3_DIR): $(BASE_DIR) @if not exist $(PROG3_DIR) mkdir $(PROG3_DIR) + +# End of Makefile.msvc |