Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
f6006384
...
f6006384efb56b029b942512f81c1734df386f8e
authored
2006-04-21 22:03:13 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(sieve.scm): Use auxiliary sed script to
create. (pkgdata_DATA): Rename to sievemod_DATA
1 parent
f433cd50
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
6 deletions
guimb/scm/Makefile.am
guimb/scm/Makefile.am
View file @
f600638
## Process this file with GNU Automake to create Makefile.in
## Copyright (C) 2001, 2002 Free Software Foundation, Inc.
## Copyright (C) 2001, 2002
, 2006
Free Software Foundation, Inc.
##
## GNU Mailutils is free software; you can redistribute it and/or
## modify it under the terms of the GNU General Public License as
...
...
@@ -19,17 +19,30 @@
bin_SCRIPTS
=
sieve.scm
sieve.scm
:
sieve.scm.in
sed
"s,%GUILE_BINDIR%,@GUILE_BINDIR@,g;s,%BINDIR%,
$(bindir)
,g;s,%LIBDIR%,
$(pkgdatadir)
,g;s,%PACKAGE%,
$(PACKAGE)
,g;s,%VERSION%,
$(VERSION)
,g"
$?
>
$@
sievemoddir
=
$(GUILE_SITE)
/sieve-modules
CLEANFILES
=
sieve.scm
sieve.scm
:
sieve.scm.in sieve.sed
sed -f sieve.sed
$(srcdir)
/sieve.scm.in > sieve.scm
pkgdata_DATA
=
\
sieve.sed
:
Makefile
echo
's,%GUILE_BINDIR%,@GUILE_BINDIR@,g'
> sieve.sed
echo
's,%BINDIR%,
$(bindir)
,g'
>> sieve.sed
echo
's,%GUILE_SITE%,
$(GUILE_SITE)
,g'
>> sieve.sed
echo
's,%LIBDIR%,
$(sievemoddir)
,g'
>> sieve.sed
echo
's,%PACKAGE%,
$(PACKAGE)
,g'
>> sieve.sed
echo
's,%VERSION%,
$(VERSION)
,g'
>> sieve.sed
CLEANFILES
=
sieve.scm sieve.sed
sitedir
=
$(GUILE_SITE)
/
$(PACKAGE)
GUILE_SITE_DATA_X
=
sieve-core.scm
site_DATA
=
@GUILE_SITE_DATA@
sievemod_DATA
=
\
mimeheader.scm
\
numaddr.scm
\
redirect.scm
\
reject.scm
\
sieve-core.scm
\
vacation.scm
EXTRA_DIST
=
\
...
...
Please
register
or
sign in
to post a comment