diff options
author | lloyd <[email protected]> | 2008-10-13 02:08:35 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-10-13 02:08:35 +0000 |
commit | 175ce638a06856a942b79f202f9cf88d489e53ef (patch) | |
tree | 066d163f3dcaa559fac133cf16d9edf99a182e56 /src/build-data/makefile/unix.in | |
parent | c294fd5c4aaa44e3130410354262e38026c7c538 (diff) |
Add basic support for Doxygen, including a make target
Diffstat (limited to 'src/build-data/makefile/unix.in')
-rw-r--r-- | src/build-data/makefile/unix.in | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/build-data/makefile/unix.in b/src/build-data/makefile/unix.in index cd4e2c46a..b83e59b01 100644 --- a/src/build-data/makefile/unix.in +++ b/src/build-data/makefile/unix.in @@ -89,12 +89,16 @@ $(STATIC_LIB): $(LIBOBJS) ################################################## # Fake Targets # ################################################## -.PHONY = clean distclean install static +.PHONY = doxygen clean distclean install static static: $(STATIC_LIB) +doxygen: + doxygen @{var:doc-dir}/botan.doxy + clean: $(RM_R) @{var:build-dir}/lib/* @{var:build-dir}/checks/* + $(RM_R) @{var:doc-dir}/doxygen @{var:doc-dir}/botan.doxy $(RM) $(LIBRARIES) $(SYMLINK) $(CHECK) distclean: clean |