blob: 75b44829ea38f5b65a7a814c9f2e2d620dbe3dd7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
templateName = kateplugin
dataFiles = src-Makefile.am plugin_app.cpp plugin_app.h\
plugin_app.rc hi16-action-plugin.png \
hi22-action-plugin.png kateplugin.png \
plugin.tdevelop subdirs plugin.desktop
### no need to change below:
template_DATA = $(templateName).tdevtemplate
templatedir = ${appwizarddatadir}/templates
appwizarddatadir = ${kde_datadir}/tdevappwizard
$(templateName).tar.gz: ${dataFiles}
$(TAR) -cf $(templateName).tar -C $(srcdir) ${dataFiles}
$(GZIP_COMMAND) -f9 $(templateName).tar
archivedir = ${appwizarddatadir}
archive_DATA = $(templateName).tar.gz ${templateName}.png
CLEANFILES = *.tar.gz
|