Added some pre-generated files.
This commit is contained in:
parent
086ea40d99
commit
c9d46d1701
7 changed files with 11271 additions and 76 deletions
4
Doxyfile
4
Doxyfile
|
|
@ -5,7 +5,7 @@
|
|||
#---------------------------------------------------------------------------
|
||||
PROJECT_NAME = Ledger
|
||||
PROJECT_NUMBER = 3.0
|
||||
OUTPUT_DIRECTORY = %distdir%/docs
|
||||
OUTPUT_DIRECTORY = %builddir%/docs
|
||||
CREATE_SUBDIRS = NO
|
||||
OUTPUT_LANGUAGE = English
|
||||
USE_WINDOWS_ENCODING = NO
|
||||
|
|
@ -260,7 +260,7 @@ CALLER_GRAPH = NO
|
|||
GRAPHICAL_HIERARCHY = YES
|
||||
DIRECTORY_GRAPH = YES
|
||||
DOT_IMAGE_FORMAT = png
|
||||
DOT_PATH = /Applications/Copied/Doxygen.app/Contents/Resources/
|
||||
DOT_PATH = /Applications/Copied/Doxygen.app/Contents/Resources/dot
|
||||
DOTFILE_DIRS =
|
||||
MAX_DOT_GRAPH_WIDTH = 1024
|
||||
MAX_DOT_GRAPH_HEIGHT = 1024
|
||||
|
|
|
|||
20
Makefile.am
20
Makefile.am
|
|
@ -7,11 +7,8 @@ ESC_distdir=`echo "$(distdir)" | sed 's/\//\\\\\//g'`
|
|||
|
||||
EXTRA_DIST = docs tests
|
||||
|
||||
dist-hook:
|
||||
dist-hook: doxygen-docs
|
||||
rm -fr `find $(distdir) -name .svn`
|
||||
cat $(srcdir)/Doxyfile | sed "s/%srcdir%/$(ESC_srcdir)/g" \
|
||||
| sed "s/%distdir%/$(ESC_distdir)/g" > $(distdir)/Doxyfile
|
||||
doxygen $(distdir)/Doxyfile
|
||||
|
||||
|
||||
lib_LTLIBRARIES = libledger.la
|
||||
|
|
@ -150,7 +147,6 @@ info_TEXINFOS = ledger.texi
|
|||
######################################################################
|
||||
|
||||
lisp_LISP = ledger.el timeclock.el
|
||||
dist_lisp_LISP = ledger.el timeclock.el
|
||||
|
||||
######################################################################
|
||||
|
||||
|
|
@ -237,10 +233,18 @@ PyUnitTests: PyUnitTests.py
|
|||
|
||||
######################################################################
|
||||
|
||||
all: check
|
||||
alldocs: ledger.info ledger.pdf doxygen-docs
|
||||
|
||||
docs: ledger.info ledger.pdf
|
||||
doxygen
|
||||
$(top_builddir)/Doxyfile.gen: $(srcdir)/Doxyfile
|
||||
cat $(srcdir)/Doxyfile | sed "s/%srcdir%/$(ESC_srcdir)/g" \
|
||||
| sed "s/%builddir%/$(ESC_builddir)/g" > $@
|
||||
|
||||
doxygen-docs: $(top_builddir)/Doxyfile.gen
|
||||
doxygen $(top_builddir)/Doxyfile.gen
|
||||
|
||||
######################################################################
|
||||
|
||||
all: check
|
||||
|
||||
check-syntax:
|
||||
g++ -I. -Itests $(CPPFLAGS) $(UnitTests_CXXFLAGS) \
|
||||
|
|
|
|||
105
Makefile.in
105
Makefile.in
|
|
@ -65,12 +65,11 @@ check_PROGRAMS = $(am__EXEEXT_2)
|
|||
@HAVE_LIBOFX_TRUE@am__append_24 = -DHAVE_LIBOFX=1
|
||||
@DEBUG_TRUE@am__append_25 = -DDEBUG_LEVEL=4
|
||||
subdir = .
|
||||
DIST_COMMON = README $(am__configure_deps) $(dist_lisp_LISP) \
|
||||
$(pkginclude_HEADERS) $(srcdir)/Makefile.am \
|
||||
$(srcdir)/Makefile.in $(srcdir)/acconf.h.in \
|
||||
$(top_srcdir)/configure AUTHORS COPYING ChangeLog INSTALL NEWS \
|
||||
compile config.guess config.sub depcomp elisp-comp install-sh \
|
||||
ltmain.sh missing texinfo.tex
|
||||
DIST_COMMON = README $(am__configure_deps) $(pkginclude_HEADERS) \
|
||||
$(srcdir)/Makefile.am $(srcdir)/Makefile.in \
|
||||
$(srcdir)/acconf.h.in $(top_srcdir)/configure AUTHORS COPYING \
|
||||
ChangeLog INSTALL NEWS compile config.guess config.sub depcomp \
|
||||
elisp-comp install-sh ltmain.sh missing texinfo.tex
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
am__aclocal_m4_deps = $(top_srcdir)/configure.in
|
||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||
|
|
@ -88,7 +87,7 @@ am__vpath_adj = case $$p in \
|
|||
am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
|
||||
am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(bindir)" \
|
||||
"$(DESTDIR)$(infodir)" "$(DESTDIR)$(lispdir)" \
|
||||
"$(DESTDIR)$(lispdir)" "$(DESTDIR)$(pkgincludedir)"
|
||||
"$(DESTDIR)$(pkgincludedir)"
|
||||
libLTLIBRARIES_INSTALL = $(INSTALL)
|
||||
LTLIBRARIES = $(lib_LTLIBRARIES)
|
||||
libledger_la_LIBADD =
|
||||
|
|
@ -202,9 +201,8 @@ RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
|
|||
install-pdf-recursive install-ps-recursive install-recursive \
|
||||
installcheck-recursive installdirs-recursive pdf-recursive \
|
||||
ps-recursive uninstall-recursive
|
||||
dist_lispLISP_INSTALL = $(INSTALL_DATA)
|
||||
lispLISP_INSTALL = $(INSTALL_DATA)
|
||||
LISP = $(dist_lisp_LISP) $(lisp_LISP)
|
||||
LISP = $(lisp_LISP)
|
||||
am__ELFILES = ledger.el timeclock.el
|
||||
am__ELCFILES = $(am__ELFILES:.el=.elc)
|
||||
ELCFILES = $(LISP:.el=.elc)
|
||||
|
|
@ -346,6 +344,9 @@ target_alias = @target_alias@
|
|||
top_builddir = @top_builddir@
|
||||
top_srcdir = @top_srcdir@
|
||||
SUBDIRS = gdtoa
|
||||
ESC_srcdir = `echo "$(srcdir)" | sed 's/\//\\\\\//g'`
|
||||
ESC_builddir = `echo "$(top_builddir)" | sed 's/\//\\\\\//g'`
|
||||
ESC_distdir = `echo "$(distdir)" | sed 's/\//\\\\\//g'`
|
||||
EXTRA_DIST = docs tests
|
||||
lib_LTLIBRARIES = libledger.la $(am__append_1)
|
||||
libledger_la_CXXFLAGS = $(WARNFLAGS) -I$(top_builddir)/gdtoa \
|
||||
|
|
@ -411,7 +412,6 @@ info_TEXINFOS = ledger.texi
|
|||
|
||||
######################################################################
|
||||
lisp_LISP = ledger.el timeclock.el
|
||||
dist_lisp_LISP = ledger.el timeclock.el
|
||||
@HAVE_BOOST_PYTHON_TRUE@ledger_so_SOURCES = pyledger.cc
|
||||
@HAVE_BOOST_PYTHON_TRUE@PYLIBS = pyledger ledger gdtoa boost_date_time \
|
||||
@HAVE_BOOST_PYTHON_TRUE@ boost_python gmp pcre $(am__append_18) \
|
||||
|
|
@ -429,8 +429,6 @@ UnitTests_LDFLAGS = $(LIBADD_DL)
|
|||
UnitTests_CXXFLAGS = -I. -I$(srcdir)/tests $(am__append_22) \
|
||||
$(am__append_23) $(am__append_24) $(am__append_25)
|
||||
PyUnitTests_SOURCES =
|
||||
ESC_srcdir = `echo "$(srcdir)" | sed 's/\//\\\\\//g'`
|
||||
ESC_builddir = `echo "$(top_builddir)" | sed 's/\//\\\\\//g'`
|
||||
all: acconf.h
|
||||
$(MAKE) $(AM_MAKEFLAGS) all-recursive
|
||||
|
||||
|
|
@ -1093,34 +1091,6 @@ $(am__ELCFILES): elc-stamp
|
|||
test -f elc-stamp; exit $$?; \
|
||||
fi; \
|
||||
else : ; fi
|
||||
install-dist_lispLISP: $(dist_lisp_LISP) $(ELCFILES)
|
||||
@$(NORMAL_INSTALL)
|
||||
@if test "$(EMACS)" != no; then \
|
||||
test -z "$(lispdir)" || $(MKDIR_P) "$(DESTDIR)$(lispdir)"; \
|
||||
list='$(dist_lisp_LISP)'; for p in $$list; do \
|
||||
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
||||
f=$(am__strip_dir) \
|
||||
echo " $(dist_lispLISP_INSTALL) '$$d$$p' '$(DESTDIR)$(lispdir)/$$f'"; \
|
||||
$(dist_lispLISP_INSTALL) "$$d$$p" "$(DESTDIR)$(lispdir)/$$f"; \
|
||||
if test -f $${p}c; then \
|
||||
echo " $(dist_lispLISP_INSTALL) '$${p}c' '$(DESTDIR)$(lispdir)/$${f}c'"; \
|
||||
$(dist_lispLISP_INSTALL) "$${p}c" "$(DESTDIR)$(lispdir)/$${f}c"; \
|
||||
else : ; fi; \
|
||||
done; \
|
||||
else : ; fi
|
||||
|
||||
uninstall-dist_lispLISP:
|
||||
@$(NORMAL_UNINSTALL)
|
||||
@if test "$(EMACS)" != no; then \
|
||||
list='$(dist_lisp_LISP)'; for p in $$list; do \
|
||||
f=$(am__strip_dir) \
|
||||
echo " rm -f '$(DESTDIR)$(lispdir)/$$f' '$(DESTDIR)$(lispdir)/$${f}c'"; \
|
||||
rm -f "$(DESTDIR)$(lispdir)/$$f" "$(DESTDIR)$(lispdir)/$${f}c"; \
|
||||
done; \
|
||||
else : ; fi
|
||||
|
||||
clean-lisp:
|
||||
-rm -f elc-stamp $(ELCFILES)
|
||||
install-lispLISP: $(lisp_LISP) $(ELCFILES)
|
||||
@$(NORMAL_INSTALL)
|
||||
@if test "$(EMACS)" != no; then \
|
||||
|
|
@ -1146,6 +1116,9 @@ uninstall-lispLISP:
|
|||
rm -f "$(DESTDIR)$(lispdir)/$$f" "$(DESTDIR)$(lispdir)/$${f}c"; \
|
||||
done; \
|
||||
else : ; fi
|
||||
|
||||
clean-lisp:
|
||||
-rm -f elc-stamp $(ELCFILES)
|
||||
install-pkgincludeHEADERS: $(pkginclude_HEADERS)
|
||||
@$(NORMAL_INSTALL)
|
||||
test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)"
|
||||
|
|
@ -1523,7 +1496,7 @@ install-binPROGRAMS: install-libLTLIBRARIES
|
|||
|
||||
installdirs: installdirs-recursive
|
||||
installdirs-am:
|
||||
for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(infodir)" "$(DESTDIR)$(lispdir)" "$(DESTDIR)$(lispdir)" "$(DESTDIR)$(pkgincludedir)"; do \
|
||||
for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(infodir)" "$(DESTDIR)$(lispdir)" "$(DESTDIR)$(pkgincludedir)"; do \
|
||||
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
|
||||
done
|
||||
install: install-recursive
|
||||
|
|
@ -1576,8 +1549,8 @@ info: info-recursive
|
|||
|
||||
info-am: $(INFO_DEPS)
|
||||
|
||||
install-data-am: install-dist_lispLISP install-info-am \
|
||||
install-lispLISP install-pkgincludeHEADERS
|
||||
install-data-am: install-info-am install-lispLISP \
|
||||
install-pkgincludeHEADERS
|
||||
|
||||
install-dvi: install-dvi-recursive
|
||||
|
||||
|
|
@ -1691,10 +1664,9 @@ ps: ps-recursive
|
|||
|
||||
ps-am: $(PSS)
|
||||
|
||||
uninstall-am: uninstall-binPROGRAMS uninstall-dist_lispLISP \
|
||||
uninstall-dvi-am uninstall-html-am uninstall-info-am \
|
||||
uninstall-libLTLIBRARIES uninstall-lispLISP uninstall-pdf-am \
|
||||
uninstall-pkgincludeHEADERS uninstall-ps-am
|
||||
uninstall-am: uninstall-binPROGRAMS uninstall-dvi-am uninstall-html-am \
|
||||
uninstall-info-am uninstall-libLTLIBRARIES uninstall-lispLISP \
|
||||
uninstall-pdf-am uninstall-pkgincludeHEADERS uninstall-ps-am
|
||||
|
||||
.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \
|
||||
install-exec-am install-strip
|
||||
|
|
@ -1709,24 +1681,23 @@ uninstall-am: uninstall-binPROGRAMS uninstall-dist_lispLISP \
|
|||
distclean-generic distclean-hdr distclean-libtool \
|
||||
distclean-tags distcleancheck distdir distuninstallcheck dvi \
|
||||
dvi-am html html-am info info-am install install-am \
|
||||
install-binPROGRAMS install-data install-data-am \
|
||||
install-dist_lispLISP install-dvi install-dvi-am install-exec \
|
||||
install-exec-am install-exec-hook install-html install-html-am \
|
||||
install-info install-info-am install-libLTLIBRARIES \
|
||||
install-lispLISP install-man install-pdf install-pdf-am \
|
||||
install-pkgincludeHEADERS install-ps install-ps-am \
|
||||
install-strip installcheck installcheck-am installdirs \
|
||||
installdirs-am maintainer-clean maintainer-clean-aminfo \
|
||||
maintainer-clean-generic mostlyclean mostlyclean-aminfo \
|
||||
mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
|
||||
pdf pdf-am ps ps-am tags tags-recursive uninstall uninstall-am \
|
||||
uninstall-binPROGRAMS uninstall-dist_lispLISP uninstall-dvi-am \
|
||||
install-binPROGRAMS install-data install-data-am install-dvi \
|
||||
install-dvi-am install-exec install-exec-am install-exec-hook \
|
||||
install-html install-html-am install-info install-info-am \
|
||||
install-libLTLIBRARIES install-lispLISP install-man \
|
||||
install-pdf install-pdf-am install-pkgincludeHEADERS \
|
||||
install-ps install-ps-am install-strip installcheck \
|
||||
installcheck-am installdirs installdirs-am maintainer-clean \
|
||||
maintainer-clean-aminfo maintainer-clean-generic mostlyclean \
|
||||
mostlyclean-aminfo mostlyclean-compile mostlyclean-generic \
|
||||
mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \
|
||||
uninstall uninstall-am uninstall-binPROGRAMS uninstall-dvi-am \
|
||||
uninstall-html-am uninstall-info-am uninstall-libLTLIBRARIES \
|
||||
uninstall-lispLISP uninstall-pdf-am \
|
||||
uninstall-pkgincludeHEADERS uninstall-ps-am
|
||||
|
||||
|
||||
dist-hook:
|
||||
dist-hook: doxygen-docs
|
||||
rm -fr `find $(distdir) -name .svn`
|
||||
|
||||
@HAVE_BOOST_PYTHON_TRUE@ledger.so: pyledger.cc libledger.la gdtoa/libgdtoa.la libpyledger.la
|
||||
|
|
@ -1752,10 +1723,18 @@ PyUnitTests: PyUnitTests.py
|
|||
|
||||
######################################################################
|
||||
|
||||
all: check
|
||||
alldocs: ledger.info ledger.pdf doxygen-docs
|
||||
|
||||
docs: ledger.info ledger.pdf
|
||||
doxygen
|
||||
$(top_builddir)/Doxyfile.gen: $(srcdir)/Doxyfile
|
||||
cat $(srcdir)/Doxyfile | sed "s/%srcdir%/$(ESC_srcdir)/g" \
|
||||
| sed "s/%builddir%/$(ESC_builddir)/g" > $@
|
||||
|
||||
doxygen-docs: $(top_builddir)/Doxyfile.gen
|
||||
doxygen $(top_builddir)/Doxyfile.gen
|
||||
|
||||
######################################################################
|
||||
|
||||
all: check
|
||||
|
||||
check-syntax:
|
||||
g++ -I. -Itests $(CPPFLAGS) $(UnitTests_CXXFLAGS) \
|
||||
|
|
|
|||
7
acprep
7
acprep
|
|
@ -97,6 +97,7 @@ if [ -d "$HOME/Products" ]; then
|
|||
cd "$projdir" || (echo "Cannot change to $projdir"; exit 1)
|
||||
fi
|
||||
|
||||
"$HERE/configure" --srcdir="$HERE" CPPFLAGS="$INCDIRS" \
|
||||
CXXFLAGS="$CXXFLAGS $local_cxxflags" WARNFLAGS="$WARNFLAGS" \
|
||||
LDFLAGS="$LIBDIRS" $SWITCHES "$@"
|
||||
"$HERE/configure" --srcdir="$HERE" \
|
||||
EMACS="$HOME/bin/emacs" EMACSLOADPATH="$EMACSLOADPATH" \
|
||||
CPPFLAGS="$INCDIRS" CXXFLAGS="$CXXFLAGS $local_cxxflags" \
|
||||
WARNFLAGS="$WARNFLAGS" LDFLAGS="$LIBDIRS" $SWITCHES "$@"
|
||||
|
|
|
|||
89
elisp-comp
Executable file
89
elisp-comp
Executable file
|
|
@ -0,0 +1,89 @@
|
|||
#!/bin/sh
|
||||
# Copyright (C) 1995, 2000, 2003, 2004, 2005 Free Software Foundation, Inc.
|
||||
|
||||
scriptversion=2005-05-14.22
|
||||
|
||||
# Franc,ois Pinard <pinard@iro.umontreal.ca>, 1995.
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 2, or (at your option)
|
||||
# any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
|
||||
# As a special exception to the GNU General Public License, if you
|
||||
# distribute this file as part of a program that contains a
|
||||
# configuration script generated by Autoconf, you may include it under
|
||||
# the same distribution terms that you use for the rest of that program.
|
||||
|
||||
# This file is maintained in Automake, please report
|
||||
# bugs to <bug-automake@gnu.org> or send patches to
|
||||
# <automake-patches@gnu.org>.
|
||||
|
||||
case $1 in
|
||||
'')
|
||||
echo "$0: No files. Try \`$0 --help' for more information." 1>&2
|
||||
exit 1;
|
||||
;;
|
||||
-h | --h*)
|
||||
cat <<\EOF
|
||||
Usage: elisp-comp [--help] [--version] FILES...
|
||||
|
||||
This script byte-compiles all `.el' files listed as FILES using GNU
|
||||
Emacs, and put the resulting `.elc' files into the current directory,
|
||||
so disregarding the original directories used in `.el' arguments.
|
||||
|
||||
This script manages in such a way that all Emacs LISP files to
|
||||
be compiled are made visible between themselves, in the event
|
||||
they require or load-library one another.
|
||||
|
||||
Report bugs to <bug-automake@gnu.org>.
|
||||
EOF
|
||||
exit $?
|
||||
;;
|
||||
-v | --v*)
|
||||
echo "elisp-comp $scriptversion"
|
||||
exit $?
|
||||
;;
|
||||
esac
|
||||
|
||||
if test -z "$EMACS" || test "$EMACS" = "t"; then
|
||||
# Value of "t" means we are running in a shell under Emacs.
|
||||
# Just assume Emacs is called "emacs".
|
||||
EMACS=emacs
|
||||
fi
|
||||
|
||||
tempdir=elc.$$
|
||||
|
||||
# Cleanup the temporary directory on exit.
|
||||
trap 'ret=$?; rm -rf "$tempdir" && exit $ret' 0
|
||||
trap '(exit $?); exit' 1 2 13 15
|
||||
|
||||
mkdir $tempdir
|
||||
cp "$@" $tempdir
|
||||
|
||||
(
|
||||
cd $tempdir
|
||||
echo "(setq load-path (cons nil load-path))" > script
|
||||
$EMACS -batch -q -l script -f batch-byte-compile *.el || exit $?
|
||||
mv *.elc ..
|
||||
) || exit $?
|
||||
|
||||
(exit 0); exit 0
|
||||
|
||||
# Local Variables:
|
||||
# mode: shell-script
|
||||
# sh-indentation: 2
|
||||
# eval: (add-hook 'write-file-hooks 'time-stamp)
|
||||
# time-stamp-start: "scriptversion="
|
||||
# time-stamp-format: "%:y-%02m-%02d.%02H"
|
||||
# time-stamp-end: "$"
|
||||
# End:
|
||||
3640
ledger.info
Normal file
3640
ledger.info
Normal file
File diff suppressed because it is too large
Load diff
7482
texinfo.tex
Normal file
7482
texinfo.tex
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Reference in a new issue