blob: 5edcab5887cb7b70a5168c35fbf70a856f4a0c02 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Python snippets plugin
plugindir = $(GEDIT_PLUGINS_LIBS_DIR)/externaltools
plugin_PYTHON = \
__init__.py \
capture.py \
library.py \
functions.py \
manager.py \
outputpanel.py \
filelookup.py \
linkparsing.py
uidir = $(GEDIT_PLUGINS_DATA_DIR)/externaltools/ui
ui_DATA = tools.ui \
outputpanel.ui
EXTRA_DIST = $(ui_DATA)
CLEANFILES = *.bak *.gladep
DISTCLEANFILES = *.bak *.gladep
-include $(top_srcdir)/git.mk
|