libxlsxwriter/docs/Makefile
John McNamara e3d4bcaf7c Added docs for conditional formatting.
Feature request #302
2020-09-05 21:17:39 +01:00

28 lines
502 B
Makefile

###############################################################################
#
# Makefile for libxlsxwriter library.
#
# Copyright 2014-2020, John McNamara, jmcnamara@cpan.org
#
# Keep the output quiet by default.
Q=@
ifdef V
Q=
endif
# Make everything.
all : docs
# Clean up.
clean :
$(Q)rm -rf html/*
# Build the doxygen docs.
docs:
$(Q)perl ../dev/release/fix_example_links.pl src/examples.txt > src/examples.dox
$(Q)doxygen
$(Q)../dev/release/fix_dox.sh
docs_doxygen_only:
$(Q)doxygen