summaryrefslogtreecommitdiff
path: root/Makefile.am
Commit message (Collapse)AuthorAgeFilesLines
* Added a dependency on mpfr.John Wiegley2009-01-301-1/+1
|
* Removed all dependency on gdtoa.John Wiegley2009-01-301-46/+1
|
* Created a new stream.h file for dealing with output streaming.John Wiegley2009-01-301-0/+2
|
* Changed the way that etags is invoked for 'make TAGS'.John Wiegley2009-01-291-2/+3
|
* Refactored the timelog code into its own file.John Wiegley2009-01-291-0/+2
|
* Fixed the way that the Doxygen documentation is built.John Wiegley2009-01-291-5/+9
|
* Unit test for Python are now auto-generated from the C++ tests.John Wiegley2009-01-281-1/+35
|
* Fixed TAGS target to work when building in a separate output dir.John Wiegley2009-01-261-1/+2
|
* Handle the VERSION more gracefully, and uninstall the Python Egg file.John Wiegley2009-01-261-20/+45
|
* Pass $(srcdir) down to python/setup.py, so it can find pyledger.cc.John Wiegley2009-01-261-4/+4
|
* Fixed the way that python/setup.py was being invoked.John Wiegley2009-01-261-6/+7
|
* Removed references to non-existent unit test files.John Wiegley2009-01-261-11/+4
|
* Fixed the rsync command in release-distcheck, in case building in a separateJohn Wiegley2009-01-261-14/+9
| | | | directory from the sources.
* Shelling out to 'fullcheck' script needs to use a complete pathname.John Wiegley2009-01-251-7/+7
|
* Missed a -I needed for building in a separate output tree from the source.John Wiegley2009-01-251-2/+3
|
* Made 'make fullcheck' work for all the new unit tests.John Wiegley2009-01-251-14/+8
|
* Reorganized Ledger so that it builds as 7 separate libraries. This is mainlyJohn Wiegley2009-01-251-149/+259
| | | | to prove to myself that it has proper decoupling between prior code areas.
* Switched over to using irrxml for parsing XML, rather than expat.John Wiegley2009-01-241-16/+6
|
* Changed lib/ exclusions in Makefile when using release-distcheck target.John Wiegley2009-01-231-1/+6
|
* Added support for Unicode text in Ledger files, thanks to 'utfcpp', which canJohn Wiegley2009-01-231-1/+2
| | | | be located at http://utfcpp.sourceforge.net.
* Build with gdtoa by default again, for the sake of Python users who passJohn Wiegley2009-01-231-20/+55
| | | | floating point arguments into the Ledger code.
* Create a py_value module, for translating value_t objects to/from Python.John Wiegley2009-01-231-4/+5
|
* When Python support is present, use a session_t object which is derived fromJohn Wiegley2009-01-231-0/+6
| | | | python_interpreter_t, so that Python can provide value expression definitions.
* Added support for "anonymizing" any report with --anon.John Wiegley2009-01-201-1/+4
|
* Can now determine the market value of balance pairs, even if stored withinJohn Wiegley2009-01-191-0/+1
| | | | value_t objects.
* Added --root option to Python install. This change from Levin.John Wiegley2009-01-191-0/+5
|
* Reverse build order of libamounts and libledger.John Wiegley2009-01-191-1/+1
|
* Factored common parts of entry_t and xact_t into new item_tJohn Wiegley2008-09-191-1/+3
|
* Reversed the link order of libamounts and libledger when building ledger.so.John Wiegley2008-08-311-1/+1
| | | | Again, for Ubuntu 8.04.
* Reverse the link order of libledger.la and libamounts.la. Apparently thisJohn Wiegley2008-08-311-1/+1
| | | | matters to Ubuntu 8.04, but only when building 'make check'!
* When a person does 'make libs', run git submodule update for them.John Wiegley2008-08-261-0/+2
|
* Added the use of autogen.sh from http://buildconf.brlcad.org/. 'acprep' stillJohn Wiegley2008-08-141-1/+1
| | | | | remains useful (mostly to me), but now users can use this script if they expect to find it.
* A few corrections for the sake of 'make distcheck'.John Wiegley2008-08-141-4/+6
|
* Added a 'make report', which uses GCOV and LCOV to produce code coverageJohn Wiegley2008-08-131-0/+14
| | | | | | statistics after running 'make fullcheck'. In order to generate these reports, you need lcov installed and you must run acprep with the '--gcov' option.
* The balance output now includes the final total.John Wiegley2008-08-131-2/+1
|
* Removed use of growlnotify.John Wiegley2008-08-131-4/+1
|
* Added a rule for building the 'lib' directory.John Wiegley2008-08-131-0/+3
|
* Moved some dependencies around for 'make distcheck'.John Wiegley2008-08-111-6/+2
|
* Several changes to autoconf and automake files:John Wiegley2008-08-111-11/+21
| | | | | | | - Always build with Python support, if it's available - Better rule for building the TAGS file (optional) - Basic reorganization - Don't run the RegressionTests if no Python interpretor is found
* Removed an erroneous @ symbol.John Wiegley2008-08-101-1/+1
|
* Don't fail if growlnotify isn't present.John Wiegley2008-08-101-1/+1
|
* When preparing a distribution, copy doc/README over the top-level README.John Wiegley2008-08-101-1/+3
| | | | That's typically where people expect to find it.
* Use growlnotify on my system to signify the end of a build. This lets me knowJohn Wiegley2008-08-101-1/+4
| | | | when I can hit "run" in gdb, without having to watch the build output.
* Use $PYTHON to locate which Python interpretor to use during a build.John Wiegley2008-08-101-2/+4
|
* Added rule to build a TAGS file.John Wiegley2008-08-101-0/+5
|
* Moved sources which I did not write from src/ into lib/.John Wiegley2008-08-091-4/+6
|
* If the Makefile says that ledger.so is out of date, forcibly rebuild it.John Wiegley2008-08-091-1/+1
|
* 'make distcheck' now works with Python support enabled.John Wiegley2008-08-091-89/+93
|
* Added a pretty divider line. :)John Wiegley2008-08-081-0/+2
|
* Changes needed since all of the documentation files moved into 'doc'.John Wiegley2008-08-081-2/+4
|