mirror of
https://github.com/jmcnamara/libxlsxwriter
synced 2025-03-28 21:13:14 +00:00
30 lines
543 B
Makefile
30 lines
543 B
Makefile
###############################################################################
|
|
#
|
|
# Makefile for libxlsxwriter library.
|
|
#
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
|
# Copyright 2014-2025, 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
|