|
Revision 7, 0.6 KB
(checked in by cmccurdy, 17 months ago)
|
|
added support for tags, posted transactions. also started a skeleton for the gui frontend.
|
-
Property svn:executable set to
*
|
| Line | |
|---|
| 1 | # Copyright (C) 2007 Christopher McCurdy <christopher.mccurdy@gmail.com> |
|---|
| 2 | # |
|---|
| 3 | # This file is free software; as a special exception the author gives |
|---|
| 4 | # unlimited permission to copy and/or distribute it, with or without |
|---|
| 5 | # modifications, as long as this notice is preserved. |
|---|
| 6 | # |
|---|
| 7 | # This program is distributed in the hope that it will be useful, but |
|---|
| 8 | # WITHOUT ANY WARRANTY, to the extent permitted by law; without even the |
|---|
| 9 | # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|---|
| 10 | |
|---|
| 11 | #!/bin/sh |
|---|
| 12 | rm -f config.cache |
|---|
| 13 | echo "- aclocal." |
|---|
| 14 | aclocal -I m4 |
|---|
| 15 | echo "- autoconf." |
|---|
| 16 | autoconf |
|---|
| 17 | echo "- autoheader." |
|---|
| 18 | autoheader |
|---|
| 19 | echo "- automake." |
|---|
| 20 | automake -af |
|---|
| 21 | exit |
|---|