mirror of
https://github.com/chris2511/xca.git
synced 2026-09-14 11:06:19 +05:00
For an official release XCA_VERSION == PACKAGE_VERSION. For any additional commit, XCA_VERSION's path-level is increased. PACKAGE_VERSION cannot be modified after initially set. Change any occurance of PACKAGE_VERSION by XCA_VERSION
41 lines
842 B
Makefile
41 lines
842 B
Makefile
|
|
# WARNING: This file will be overwritten by configure
|
|
# @configure_input@
|
|
|
|
export TOPDIR=@abs_srcdir@
|
|
export VERSION=@XCA_VERSION@
|
|
export HOST=@HOST@
|
|
|
|
CPPFLAGS+=-Wall -Wextra -DXCA_PREFIX=\"${xca_prefix}\" -DETC=\"@sysconfdir@\" -DDOCDIR=\"@docdir@\"
|
|
CFLAGS+=-O2 -ggdb -std=c++11 @CXXFLAGS@
|
|
LIBS=@LIBS@
|
|
EXTRA_VERSION=@EXTRA_VERSION@
|
|
|
|
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}
|