mirror of
https://github.com/jmcnamara/libxlsxwriter.git
synced 2026-05-15 14:15:54 -06:00
25 lines
383 B
Makefile
25 lines
383 B
Makefile
###############################################################################
|
|
#
|
|
# Makefile for libxlsxwriter library.
|
|
#
|
|
# Copyright 2014, 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)doxygen
|
|
$(Q)../dev/release/fix_dox.sh
|
|
|