blob: e8be5d7773ccfb0084f948be0201857750ccdd1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
SUBDIRS = \
alphabet_soup \
Barcode \
Poly3DObjects \
test \
ink2canvas \
xaml2svg
extensiondir = $(datadir)/inkscape/extensions
otherstuffdir = $(datadir)/inkscape/extensions
moduledir = $(datadir)/inkscape/extensions
extension_SCRIPTS = $(wildcard $(srcdir)/*.py)
otherstuff_DATA = \
fontfix.conf \
inkweb.js \
jessyInk.js \
jessyInk_core_mouseHandler_noclick.js \
jessyInk_core_mouseHandler_zoomControl.js \
aisvg.xslt \
colors.xml \
jessyInk_video.svg \
svg2fxg.xsl \
svg2xaml.xsl \
xaml2svg.xsl \
inkscape.extension.rng
module_DATA = $(wildcard $(srcdir)/*.inx)
EXTRA_DIST = \
$(extension_SCRIPTS) $(otherstuff_DATA) $(module_DATA)
|