summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2008-08-10 00:56:57 -0400
committerJohn Wiegley <johnw@newartisans.com>2008-08-10 00:56:57 -0400
commit65510c9a9f0d588a8d0285072dfc2e2a153e5253 (patch)
treefd3bcdb7dea0a2fa28d4abbf7ec5188b29989a70
parent572a37a9c61bc6678aaee9990361d41140a65415 (diff)
downloadledger-65510c9a9f0d588a8d0285072dfc2e2a153e5253.tar.gz
ledger-65510c9a9f0d588a8d0285072dfc2e2a153e5253.tar.bz2
ledger-65510c9a9f0d588a8d0285072dfc2e2a153e5253.zip
Use growlnotify on my system to signify the end of a build. This lets me know
when I can hit "run" in gdb, without having to watch the build output.
-rw-r--r--Makefile.am5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index 37b8f001..f9e9f649 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -217,7 +217,10 @@ ledger.so: $(ledger_so_SOURCES) $(ledger_so_DEPENDENCIES)
LDFLAGS="$(LDFLAGS) -L$$BUILD_DIR -L$$BUILD_DIR/.libs" \
ARCHFLAGS="$(ARCHFLAGS)" PYLIBS="$(PYLIBS)" \
$(PYTHON) python/setup.py build \
- --build-lib=$$BUILD_DIR/ --build-temp=$$BUILD_DIR/build -f)
+ --build-lib=$$BUILD_DIR/ --build-temp=$$BUILD_DIR/build -f); \
+ test -x $(HOME)/bin/growlnotify && \
+ growlnotify -n make -a /Applications/Utilities/Terminal.app \
+ -m "Build in $$BUILD_DIR completed" Ledger
endif