~ubuntu-dev/ubuntu/lucid/mutt/lucid-201002110857

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Bhavani Shankar
  • Date: 2009-06-07 17:30:03 UTC
  • mto: (16.2.1 experimental) (2.3.1 squeeze)
  • mto: This revision was merged to the branch mainline in revision 21.
  • Revision ID: james.westby@ubuntu.com-20090607173003-rg37ui3h2bbv7wl0
Tags: upstream-1.5.19
ImportĀ upstreamĀ versionĀ 1.5.19

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
## Use aclocal -I m4; automake --foreign
3
3
 
4
4
AUTOMAKE_OPTIONS = 1.6 foreign
5
 
EXTRA_PROGRAMS = mutt_dotlock pgpring pgpewrap
 
5
EXTRA_PROGRAMS = mutt_dotlock pgpring pgpewrap mutt_md5
6
6
 
7
7
if BUILD_IMAP
8
8
IMAP_SUBDIR = imap
29
29
        score.c send.c sendlib.c signal.c sort.c \
30
30
        status.c system.c thread.c charset.c history.c lib.c \
31
31
        muttlib.c editmsg.c mbyte.c \
32
 
        url.c ascii.c mutt_idna.c crypt-mod.c crypt-mod.h
 
32
        url.c ascii.c crypt-mod.c crypt-mod.h
33
33
 
34
34
nodist_mutt_SOURCES = $(BUILT_SOURCES)
35
35
 
47
47
 
48
48
CPPFLAGS=@CPPFLAGS@
49
49
 
50
 
EXTRA_mutt_SOURCES = account.c md5.c mutt_sasl.c mutt_socket.c mutt_ssl.c \
51
 
        mutt_tunnel.c pop.c pop_auth.c pop_lib.c smime.c pgp.c pgpinvoke.c pgpkey.c \
52
 
        pgplib.c sha1.c pgpmicalg.c gnupgparse.c resize.c dotlock.c remailer.c \
53
 
        smtp.c browser.h mbyte.h remailer.h url.h \
54
 
        crypt-mod-pgp-classic.c crypt-mod-smime-classic.c \
55
 
        pgppacket.c mutt_idna.h hcache.h hcache.c bcache.c bcache.h mutt_ssl_gnutls.c \
56
 
        crypt-gpgme.c crypt-mod-pgp-gpgme.c crypt-mod-smime-gpgme.c \
57
 
        utf8.c wcwidth.c 
 
50
EXTRA_mutt_SOURCES = account.c bcache.c crypt-gpgme.c crypt-mod-pgp-classic.c \
 
51
        crypt-mod-pgp-gpgme.c crypt-mod-smime-classic.c \
 
52
        crypt-mod-smime-gpgme.c dotlock.c gnupgparse.c hcache.c md5.c \
 
53
        mutt_idna.c mutt_sasl.c mutt_socket.c mutt_ssl.c mutt_ssl_gnutls.c \
 
54
        mutt_tunnel.c pgp.c pgpinvoke.c pgpkey.c pgplib.c pgpmicalg.c \
 
55
        pgppacket.c pop.c pop_auth.c pop_lib.c remailer.c resize.c sha1.c \
 
56
        smime.c smtp.c utf8.c wcwidth.c \
 
57
        bcache.h browser.h hcache.h mbyte.h mutt_idna.h remailer.h url.h
58
58
 
59
59
EXTRA_DIST = COPYRIGHT GPL OPS OPS.PGP OPS.CRYPT OPS.SMIME TODO UPDATING \
60
60
        configure account.h \
68
68
        mbyte.h lib.h extlib.c pgpewrap.c smime_keys.pl pgplib.h \
69
69
        README.SSL smime.h \
70
70
        muttbug pgppacket.h depcomp ascii.h BEWARE PATCHES patchlist.sh \
71
 
        ChangeLog ChangeLog.old mkchangelog.sh mutt_idna.h \
 
71
        ChangeLog mkchangelog.sh mutt_idna.h \
72
72
        snprintf.c regex.c crypt-gpgme.h hcachever.sh.in
73
73
 
74
74
EXTRA_SCRIPTS = smime_keys
81
81
pgpring_LDADD = @LIBOBJS@ $(INTLLIBS) 
82
82
pgpring_DEPENDENCIES = @LIBOBJS@ $(INTLDEPS)
83
83
 
 
84
mutt_md5_SOURCES = md5.c
 
85
mutt_md5_CFLAGS = -DMD5UTIL
 
86
mutt_md5_LDADD =
 
87
 
 
88
noinst_PROGRAMS = $(MUTT_MD5)
 
89
 
84
90
mutt_dotlock.c: dotlock.c
85
91
        cp $(srcdir)/dotlock.c mutt_dotlock.c
86
92
 
114
120
        cmp -s reldate.h.tmp reldate.h || cp reldate.h.tmp reldate.h; \
115
121
        rm reldate.h.tmp
116
122
 
117
 
hcversion.h: $(srcdir)/mutt.h $(srcdir)/rfc822.h hcachever.sh
 
123
hcversion.h: $(srcdir)/mutt.h $(srcdir)/rfc822.h hcachever.sh $(MUTT_MD5)
118
124
        ( echo '#include "config.h"'; echo '#include "mutt.h"'; ) \
119
125
        | $(CPP) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) - | sh ./hcachever.sh hcversion.h
120
126
 
147
153
                rm $(DESTDIR)$(sysconfdir)/$${i}.dist ; \
148
154
        done
149
155
 
150
 
# Don't make this one ChangeLog - it's intended to be
151
 
# used manually.
152
 
 
153
156
pclean:
154
157
        cat /dev/null > $(top_srcdir)/PATCHES
155
158
 
156
159
check-security:
157
160
        (cd $(top_srcdir) && ./check_sec.sh)
158
161
 
159
 
commit-real:
160
 
        (cd $(top_srcdir) && cvs commit)
161
 
 
162
 
commit-changelog:
163
 
        (cd $(top_srcdir) && cvs commit -m "# changelog commit" ChangeLog)
164
 
 
165
 
commit: pclean check-security commit-real update-changelog commit-changelog
 
162
commit:
 
163
        @echo "make commit is obsolete; use hg-commit"; false
166
164
 
167
165
update-changelog:
168
166
        (cd $(top_srcdir); \
175
173
update-doc:
176
174
        (cd doc && $(MAKE) update-doc)
177
175
 
178
 
.PHONY: commit pclean check-security commit-real commit-changelog
179
 
# .PHONY: changelog ChangeLog
 
176
.PHONY: commit pclean check-security