Skip to content

Commit

Permalink
workaround for VC6
Browse files Browse the repository at this point in the history
  • Loading branch information
mattn committed Aug 6, 2009
1 parent 6fc91a1 commit c8e0a51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile.mvc
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
all : tthttpd.exe

tthttpd.exe : main.obj httpd.obj utils.obj
link /out:$@ main.obj httpd.obj utils.obj
link /nologo /out:$@ main.obj httpd.obj utils.obj /NODEFAULTLIB:libc.lib /nodefaultlib:libcp.lib

httpd.cxx : httpd.h utils.h
utils.cxx : utils.h
main.cxx : httpd.cxx
.cxx.obj :
cl /W3 /UUNICODE /U_UNICODE /EHsc -c $<
cl /nologo /MT /W3 /UUNICODE /U_UNICODE /EHsc -c $<

clean :
del /S *.obj tthttpd.exe

0 comments on commit c8e0a51

Please sign in to comment.