Makefile 557 B

1234567891011121314151617181920212223242526272829303132333435
  1. #
  2. # doc/Makefile
  3. #
  4. # This library is free software; you can redistribute it and/or
  5. # modify it under the terms of the GNU Lesser General Public
  6. # License as published by the Free Software Foundation version 2.1
  7. # of the License.
  8. #
  9. # Copyright (c) 2003-2006 Thomas Graf <tgraf@suug.ch>
  10. #
  11. ifeq ($(shell [ ! -r ../Makefile.opts ] && echo 1),)
  12. include ../Makefile.opts
  13. endif
  14. export
  15. .PHONY: all gendoc clean distclean install
  16. all:
  17. @true
  18. gendoc:
  19. doxygen Doxyfile
  20. clean:
  21. @true
  22. distclean:
  23. $(RM) -f html/*
  24. install:
  25. @true
  26. $(DEPS): ../Makefile.opts