diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 1999-12-15 19:25:10 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 1999-12-15 19:25:10 (GMT) |
commit | 322885a8700a209812bf5a94205260c9bef6ac1f (patch) | |
tree | cc1cd70cf5761ddf72ff114c0b65576c3f4c1d2a /Makefile.windows | |
parent | 361bf7915be13b5c74688e33c427aea30641814c (diff) | |
download | Doxygen-322885a8700a209812bf5a94205260c9bef6ac1f.zip Doxygen-322885a8700a209812bf5a94205260c9bef6ac1f.tar.gz Doxygen-322885a8700a209812bf5a94205260c9bef6ac1f.tar.bz2 |
initial version
Diffstat (limited to 'Makefile.windows')
-rw-r--r-- | Makefile.windows | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/Makefile.windows b/Makefile.windows new file mode 100644 index 0000000..a662b2e --- /dev/null +++ b/Makefile.windows @@ -0,0 +1,57 @@ +# Makefile for Microsoft Visual C++ + +include Makefile.config + +MAKE = nmake /NOLOGO +TMAKE = ..\tmake\bin\tmake + +all: + @echo " + @echo " Select one of the following targets: " + @echo " " + @echo " win32-msvc " + @echo " " + @echo " Make any of them to build Doxygen. " + @echo " Make will now abort with an error. " + @exit 1 + +win32-msvc: src\version.cpp + cd src + $(MAKE) tmake TMAKE=$(TMAKE) PERL=$(PERL) + $(MAKE) MAKE=$(MAKE) + +clean: FORCE + cd examples + $(MAKE) -f Makefile.windows clean + cd .. + -del src\scanner.cpp + -del src\code.cpp + -del src\config.cpp + -del src\pre.cpp + -del src\tag.cpp + -del src\constexp.lex.cpp + -del src\constexp.parse.cpp + -del src\constexp.parse.h + -del src\doxytag.cpp + -del src\declinfo.cpp + -del src\defargs.cpp + -del src\Makefile.doxygen + -del src\Makefile.doxytag + -del src\Makefile.doxysearch + -del src\version.cpp + -del bin\doxy*.* + -del objects\*.obj + +examples: FORCE + cd examples + $(MAKE) -f Makefile.windows + cd .. + +docs: examples + @echo Docs cannot be made using windows yet. + @echo Get them from the binary distribution... + +src\version.cpp: + echo char versionString[]="$(VERSION)"; >src\version.cpp + +FORCE: |