blob: fd902e1ab98cba36eadae6502ebed81d2d341e0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
appwizarddatadir = ${kde_datadir}/tdevappwizard
commondatadir = ${appwizarddatadir}/template-common
jshellodir = ${appwizarddatadir}/template-jshello
templatedir = ${appwizarddatadir}/templates
jshello_DATA = app.js app.tdevelop
template_DATA = jshello
DISTCLEANFILES = script.local
EXTRA_DIST = script
perl = perl
script.local: ${srcdir}/script
cp ${srcdir}/script script.local ; \
perl -npi -e 's%^#\!.*$$%#!'${perl}' -I'${commondatadir}'%g;' script.local
install-data-local: script.local
$(mkinstalldirs) $(DESTDIR)$(jshellodir)
$(INSTALL_DATA) script.local $(DESTDIR)$(jshellodir)/script
|