annotate Makefile @ 3:21f5e1dc0a4c
default tip
text selection for firefox will return the full contents of the current text field if no text is selected. also, the seldict contains references to the currently-focused element and window, if any.
author |
Atul Varma <varmaa@toolness.com> |
date |
Fri, 09 May 2008 12:59:10 -0700 |
parents |
6e4335fa3321 |
children |
|
rev |
line source |
1
|
1 FIREFOX_BIN_DIR=/Applications/Firefox.app/Contents/MacOS
|
|
2 FIREFOX_PROFILE_DIR=/Users/varmaa/firefox-profile
|
|
3
|
|
4 install:
|
|
5 cp enso_pyxpcom.py ${FIREFOX_BIN_DIR}/components
|
|
6 rm -f "${FIREFOX_BIN_DIR}/components/compreg.dat"
|
|
7 rm -f "${FIREFOX_BIN_DIR}/components/xpti.dat"
|
|
8 rm -f "${FIREFOX_PROFILE_DIR}/compreg.dat"
|
|
9 rm -f "${FIREFOX_PROFILE_DIR}/xpti.dat"
|
|
10
|
|
11 uninstall:
|
|
12 rm -f ${FIREFOX_BIN_DIR}/components/enso_pyxpcom.py
|