Projekt

Allgemein

Profil

Herunterladen (6,29 KB) Statistiken
| Zweig: | Markierung: | Revision:
fea569ad aquamaniac
2e39df9c martin
MY_CFLAGS=-ggdb -Wall -O
d7f19243 aquamaniac
#MP_CONF_FLAGS=--enable-maintainer-mode --disable-static
c0da2a05 martin
MP_CONF_FLAGS=INSTALL="/usr/bin/install -p" --enable-maintainer-mode --disable-static --enable-local
fea569ad aquamaniac
2e39df9c martin
WIN32_OPTIONS=\
--host=i586-mingw32msvc \
--target=i586-mingw32msvc \
--enable-version-specific-runtime-libs \
--with-gcc \
--with-gnu-ld \
--without-x \
--enable-threads=win32 \
--disable-win32-registry

MINGW32_PREFIX=/usr/i586-mingw32msvc

8fb338e5 martin
WIN32_INSTALL_DIR=/home/martin/install/win32

089ab390 aquamaniac
default: all

dist:
@echo "This file is to make it easier for you to create all you need"
aclocal -I ./m4
autoheader
# use --include-deps, if you want to release the stuff. Don't use it for
# yourself
beddbe4f cstim
if test ! -f i18nsources; then echo > i18nsources; fi
089ab390 aquamaniac
automake --include-deps
autoconf
touch stamp-h.in
rm -f `find . -name \*~`
rm -Rf `find . -type d -name CVS`
rm -f `find . -type f -name .cvsignore`
rm -Rf apidoc
rm -Rf gwenipc
rm -f Makefile.cvs
rm -Rf autom4te.cache

cvsclean::
beddbe4f cstim
if test ! -f i18nsources; then echo > i18nsources; fi
089ab390 aquamaniac
automake --include-deps
autoconf
touch stamp-h.in
rm -Rf gwenipc
rm -f `find . -name \*~`
rm -Rf apidoc
rm -Rf autom4te.cache

all:
libtoolize -f --automake
@if test -r config.status; then \
prefix=`grep '@prefix@' config.status |cut -d , -f 3`; \
gwen_prefix=`grep '@GWEN_PREFIX@' config.status |cut -d , -f 3`; \
fi; \
for A in "$${gwen_prefix}/share/aclocal" "$${prefix}/share/aclocal" m4; do \
if test -d "$${A}"; then \
ACLOCAL_FLAGS="$${ACLOCAL_FLAGS} -I $${A}"; \
fi; \
done; \
echo "aclocal $${ACLOCAL_FLAGS}"; \
aclocal $${ACLOCAL_FLAGS} || (echo -e '***\n*** If the line above shows the error message "macro AC_GWENHYWFAR not \n*** found", you need to specify the environment variable ACLOCAL_FLAGS \n*** to be "-I GWENHYWFAR_PREFIX/share/aclocal". For example, do the following:\n***\n*** export ACLOCAL_FLAGS="-I ${HOME}/usr/share/aclocal"\n*** make -f Makefile.cvs\n***'; exit 1)
c3a4c15f christian
@if ! grep -q AC_GWENHYWFAR aclocal.m4 ; then echo -e "***\n*** Error: The configure macro of the gwenhywfar package could not be found. \n*** Please specify the environment variable ACLOCAL_FLAGS \n*** to be \"-I GWENHYWFAR_PREFIX/share/aclocal\". \n"; exit 1 ; fi
@if ! grep -q PKG_CHECK_MODULES aclocal.m4 ; then echo -e "***\n*** Error: The configure macro of the pkg-config package \n*** (usually included in gnome) could not be found. \n*** Please specify the environment variable ACLOCAL_FLAGS \n*** to be \"-I GNOME_PREFIX/share/aclocal\". \n"; exit 1 ; fi
089ab390 aquamaniac
autoheader
beddbe4f cstim
if test ! -f i18nsources; then echo > i18nsources; fi
851fd2b0 cstim
if test ! -f qtsources; then echo > qtsources; fi
089ab390 aquamaniac
automake --add-missing
@echo "autoconf"; \
autoconf || (echo -e '***\n*** If the line above shows the error message "possibly undefined macro: \n*** AC_GWENHYWFAR", you need to specify the environment variable ACLOCAL_FLAGS \n*** to be "-I GWENHYWFAR_PREFIX/share/aclocal". For example, do the following:\n***\n*** export ACLOCAL_FLAGS="-I ${HOME}/usr/share/aclocal"\n*** make -f Makefile.cvs\n***'; exit 1)
8552f679 cstim
@echo "Now you can run ./configure"
089ab390 aquamaniac

mp:
libtoolize -f --automake
aclocal -I ./m4
autoheader
beddbe4f cstim
if test ! -f i18nsources; then echo > i18nsources; fi
089ab390 aquamaniac
automake --add-missing
autoconf
378a9ae5 martin
PKG_CONFIG_PATH="$(PKG_CONFIG_PATH):./m4" \
2e39df9c martin
CXXFLAGS="-ggdb -Wall" \
576806a9 Martin Preuss
CFLAGS="-ggdb -Wall" \
2e39df9c martin
./configure $(MP_CONF_FLAGS) \
917aa6fc martin
--with-backends="aqhbci aqofxconnect aqebics" \
ada71b91 martin
--prefix=/usr/local --enable-full-doc=yes
c9a4ffef martin
make sources

3360ff4e martin
clang:
libtoolize -f --automake
aclocal -I ./m4
autoheader
if test ! -f i18nsources; then echo > i18nsources; fi
automake --add-missing
autoconf
PKG_CONFIG_PATH="$(PKG_CONFIG_PATH):./m4" \
CC=clang \
CXX=clang \
CXXFLAGS="-ggdb -Wall" \
576806a9 Martin Preuss
CFLAGS="-ggdb -Wall" \
3360ff4e martin
./configure $(MP_CONF_FLAGS) \
917aa6fc martin
--with-backends="aqhbci aqofxconnect aqebics"
3360ff4e martin
make sources

2e39df9c martin
mp-priv:
libtoolize -f --automake
aclocal -I ./m4
autoheader
if test ! -f i18nsources; then echo > i18nsources; fi
automake --add-missing
autoconf
PKG_CONFIG_PATH="$PKG_CONFIG_PATH:./m4" \
CXXFLAGS="-ggdb -Wall" \
576806a9 Martin Preuss
CFLAGS="-ggdb -Wall" \
2e39df9c martin
LIBOFX_CFLAGS="-I/opt/devel/4/include" \
LIBOFX_LIBS="-L/opt/devel/4/lib -lofx" \
./configure $(MP_CONF_FLAGS) \
--with-backends="aqhbci aqofxconnect" \
99d2ce7a martin
--with-frontends="" \
2e39df9c martin
--with-gwen-dir=/opt/devel/4 \
--with-chipcard-client-dir=/opt/devel/4 \
--prefix=/opt/devel/4
make sources


mp-orig:
libtoolize -f --automake
aclocal -I ./m4
autoheader
if test ! -f i18nsources; then echo > i18nsources; fi
automake --add-missing
autoconf
99d2ce7a martin
PKG_CONFIG_PATH="$PKG_CONFIG_PATH:./m4" CXXFLAGS="-ggdb -Wall" CFLAGS="$(MP_CFLAGS)" ./configure $(MP_CONF_FLAGS) --with-backends="aqhbci aqofxconnect aqdtaus aqyellownet aqgeldkarte" --with-frontends="" --with-gwen-dir=/opt/devel --with-chipcard-client-dir=/opt/devel
4616b03e aquamaniac
make sources
9bfaf959 aquamaniac
a5537892 cstim
mp2:
libtoolize -f --automake
aclocal -I ./m4
autoheader
if test ! -f i18nsources; then echo > i18nsources; fi
automake --add-missing
autoconf
99d2ce7a martin
PKG_CONFIG_PATH="$PKG_CONFIG_PATH:./m4" CXXFLAGS="-ggdb -Wall" CFLAGS="$(MP_CFLAGS)" ./configure $(MP_CONF_FLAGS) --with-backends="aqhbci aqofxconnect aqdtaus" --with-frontends=""
a5537892 cstim
make sources

9bfaf959 aquamaniac
mp-win:
abc9ab41 martin
PKG_CONFIG_PATH="$PKG_CONFIG_PATH:./m4" CXXFLAGS="-Wall" CFLAGS="-Wall" ./configure --prefix=/c/posix --with-gwen-dir=/c/posix --enable-local

2e39df9c martin
mp-w32:
7b6cd487 martin
libtoolize -f --automake
aclocal -I ./m4
autoheader
automake --add-missing
autoconf
PATH="$(MINGW32_PREFIX)/bin:$(PATH)" \
8fb338e5 martin
PKG_CONFIG_PATH=$(WIN32_INSTALL_DIR)/lib/pkgconfig \
CFLAGS="$(MY_CFLAGS) -I$(WIN32_INSTALL_DIR)/include -L$(WIN32_INSTALL_DIR)/lib" CXXFLAGS="-ggdb -Wall -I$(WIN32_INSTALL_DIR)/include -L$(WIN32_INSTALL_DIR)/lib" \
2e39df9c martin
DLLTOOL=i586-mingw32msvc-dlltool \
OBJDUMP=i586-mingw32msvc-objdump \
LD=i586-mingw32msvc-ld \
AR=i586-mingw32msvc-ar \
NM=i586-mingw32msvc-nm \
RANLIB=i586-mingw32msvc-ranlib \
STRIP=i586-mingw32msvc-strip \
STRIPPROG=i586-mingw32msvc-strip \
AS=i586-mingw32msvc-as \
RC=i586-mingw32msvc-windres \
./configure \
8fb338e5 martin
--prefix=$(WIN32_INSTALL_DIR) $(WIN32_OPTIONS) \
2e39df9c martin
--enable-release \
8fb338e5 martin
--with-gwen-dir=$(WIN32_INSTALL_DIR) \
2e39df9c martin
--with-frontends="" \
23dd97d6 martin
--with-backends="aqhbci aqofxconnect" \
2e39df9c martin
--disable-tutorials \
--with-xmlmerge=/usr/bin/xmlmerge

55b59533 martin
git-log:
af2f168f martin
git-log --pretty="format:%ad %an%n%s%n%b" --since="2008-08-26" >git.log