blob: 845411c7c4628aad3b2d187acd2c26ca9f1370e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
dataFiles = Makefile.am Example.png app.tdevelop app.pro \
simpleimpl.cpp simpleimpl.h
templateName = opieapplet
### 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
|