aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile.am
blob: da3623c5c3c08bd19482295130108054572c2f5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
SUBDIRS = guile

EXTRA_DIST = skribilo.in

bin_SCRIPTS = skribilo
noinst_SCRIPTS = pre-inst-skribilo

CLEANFILES  = $(bin_SCRIPTS)

substitute = sed -e 's,[@]guilemoduledir[@],$(guilemoduledir),g'	\
		 -e 's,[@]abs_top_srcdir[@],$(abs_top_srcdir),g'	\
		 -e 's,[@]abs_top_builddir[@],$(abs_top_builddir),g'	\
		 -e 's,[@]GUILE[@],$(GUILE),g'				\
		 -e 's,[@]PACKAGE_STRING[@],$(PACKAGE_STRING),g'	\
		 -e 's,[@]PACKAGE_NAME[@],$(PACKAGE_NAME),g'		\
		 -e 's,[@]PACKAGE_VERSION[@],$(PACKAGE_VERSION),g'

SUFFIXES = .in

.in:
	$(substitute) "$^" > "$@.tmp" &&	\
	chmod +x "$@.tmp" &&			\
	mv "$@.tmp" "$@"