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.
This commit is contained in:
parent
572a37a9c6
commit
65510c9a9f
1 changed files with 4 additions and 1 deletions
|
|
@ -217,7 +217,10 @@ ledger.so: $(ledger_so_SOURCES) $(ledger_so_DEPENDENCIES)
|
||||||
LDFLAGS="$(LDFLAGS) -L$$BUILD_DIR -L$$BUILD_DIR/.libs" \
|
LDFLAGS="$(LDFLAGS) -L$$BUILD_DIR -L$$BUILD_DIR/.libs" \
|
||||||
ARCHFLAGS="$(ARCHFLAGS)" PYLIBS="$(PYLIBS)" \
|
ARCHFLAGS="$(ARCHFLAGS)" PYLIBS="$(PYLIBS)" \
|
||||||
$(PYTHON) python/setup.py build \
|
$(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
|
endif
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue