mirror of
https://github.com/chris2511/xca.git
synced 2026-09-14 11:06:19 +05:00
linuxdoc is pretty outdated, while sphinx is really cool: - Sphinx is modern with a broad user base - The generated documentation is themeable - The sphinx-source is much more readable than the SGML-tag scattered linuxdoc. - The different topics can be splitted into different files - It can be converted to qt-context sensitive help - It supports syntax highlighting for the SQL database documentation - It is supported on MacOSX,because it is python-based. Drop code2html perl-script, which was used to colorize the SQL schema. Generate "doc/arguments.rst" with XCA_MAN="rst" ./xca
40 lines
827 B
Makefile
40 lines
827 B
Makefile
|
|
# WARNING: This file will be overwritten by configure
|
|
# @configure_input@
|
|
|
|
export TOPDIR=@abs_srcdir@
|
|
export VERSION=@PACKAGE_VERSION@@ITERATION@
|
|
export HOST=@HOST@
|
|
|
|
CPPFLAGS+=-Wall -Wextra -DXCA_PREFIX=\"${xca_prefix}\" -DETC=\"@sysconfdir@\" -DDOCDIR=\"@docdir@\" @CXXFLAGS@
|
|
CFLAGS+=-O2 -ggdb -std=c++11
|
|
LIBS=@LIBS@
|
|
|
|
MOC=@QT_MOC@
|
|
UIC=@QT_UIC@
|
|
RCC=@QT_RCC@
|
|
LRELEASE=@QT_LRELEASE@
|
|
LCONVERT=@QT_LCONVERT@
|
|
HELPCOLL=@QT_HELPCOLL@
|
|
|
|
CC=@CXX@
|
|
STRIP=@STRIP@
|
|
WINDRES=@WINDRES@
|
|
DOCTOOL=@DOCTOOL@
|
|
MACDEPLOYQT=@MACDEPLOYQT@
|
|
SUFFIX=@SUFFIX@
|
|
ENABLE_DOC=@ENABLE_DOC@
|
|
|
|
PACKAGE_TARNAME=@PACKAGE_TARNAME@
|
|
QTDIR=@QT_DIR@
|
|
INSTALL_DIR=@INSTALL_DIR@
|
|
prefix=@prefix@
|
|
exec_prefix=@exec_prefix@
|
|
docdir=@docdir@
|
|
htmldir=@htmldir@
|
|
mandir=@mandir@
|
|
bindir=@bindir@
|
|
datadir=@datadir@
|
|
datarootdir=@datarootdir@
|
|
xca_prefix=${datarootdir}/${PACKAGE_TARNAME}
|