summaryrefslogtreecommitdiff
path: root/bzr/Makefile.am
blob: 945ec50caf98a78fab747d595ebc58ceb4a3037d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
bzrplugindir = $(datadir)/pyshared/bzrlib/plugins/zeitgeist
bzrplugin_DATA = __init__.py

# we want to allow also local install
BZR_PLUGIN_HOME_DIR = ~/.bazaar/plugins/zeitgeist

local-install:
	mkdir -p $(BZR_PLUGIN_HOME_DIR)
	cp __init__.py $(BZR_PLUGIN_HOME_DIR)

local-uninstall:
	-rm -rf $(BZR_PLUGIN_HOME_DIR)