blob: 96774e3b6daabccb5e9c8689e866a3aab83e0241 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
dataFiles = src-Makefile.am app.cpp app.h main.cpp appui.rc app.tdevelop \
subdirs app.desktop khello2.png widget.cpp widget.h widgetbase.ui
templateName = khello2
### 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
|