mirror of
https://github.com/chris2511/xca.git
synced 2026-09-14 11:06:19 +05:00
The plus sign was not compatible with the WIX toolset. The 4th digist is the number of commits since the last release. For a tagged release it is not 00, but empty.
39 lines
804 B
Makefile
39 lines
804 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@
|
|
|
|
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}
|