1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
# generated 2002/7/13 14:37:33 CEST by fabian@fabian.(none)
#AUTOMAKE_OPTIONS = 1.4
SUBDIRS = src doc macros
ACLOCAL_AMFLAGS = -I macros
EXTRA_DIST = \
README.WIN32 \
ktoblzcheck.spec \
ktoblzcheck.vcproj
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = $(PACKAGE).pc
rpm: $(PACKAGE).spec dist
rpmbuild="rpm" && \
if [ `rpm --version | awk '{ print $$3 }'` > /dev/null ]; then rpmbuild="rpmbuild"; fi && \
$$rpmbuild -ta $(PACKAGE)-$(VERSION).tar.gz
srpm: $(PACKAGE).spec dist
rpmbuild="rpm" && \
if [ `rpm --version | awk '{ print $$3 }'` > /dev/null ]; then rpmbuild="rpmbuild"; fi && \
$$rpmbuild -ts $(PACKAGE)-$(VERSION).tar.gz
srcdoc: Doxyfile
make -C doc mainpage.doxygen
doxygen
# Rule for using the Inno Setup compiler. The path to iscc.exe is set
# manually here for now.
ISCC = "C:\Programme\Inno Setup 5\iscc.exe"
ISCC_TMPDIR = win32-tmp
setup: $(PACKAGE).iss
mkdir -p $(ISCC_TMPDIR)
make prefix="`pwd`/$(ISCC_TMPDIR)" BANKDATA_PATH="`pwd`/$(ISCC_TMPDIR)/data" install \
&& $(ISCC) $(PACKAGE).iss \
&& rm -rf $(ISCC_TMPDIR)
|