~ubuntu-branches/ubuntu/trusty/libgnumail-java/trusty-proposed

« back to all changes in this revision

Viewing changes to Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Wolfgang Baer
  • Date: 2005-04-05 19:26:12 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050405192612-5t5dm2wujs5tpuqg
Tags: 1.0-5
* Somehow the cdbs build system tries to also use the alternative
  make build system and interferes with the ant build system.
* Changed build system back to debhelper use only (closes: #303218)
  - Patches are therefore included in the diff.gz, but also
    in the debian/patches dir for reference and later usage
  - Removed dependency on cdbs

Show diffs side-by-side

added added

removed removed

Lines of Context:
98
98
am__quote = @am__quote@
99
99
install_sh = @install_sh@
100
100
uudecode = @uudecode@
 
101
JAVADOCFLAGS = 
101
102
 
102
103
src = @srcdir@/source
103
104
dst = @srcdir@/classes
218
219
$(src)/gnu/mail/util/BOutputStream.java \
219
220
$(src)/gnu/mail/util/Base64InputStream.java \
220
221
$(src)/gnu/mail/util/Base64OutputStream.java \
 
222
$(src)/gnu/mail/util/MailboxURLConnection.java \
221
223
$(src)/gnu/mail/util/QInputStream.java \
222
224
$(src)/gnu/mail/util/QOutputStream.java \
223
225
$(src)/gnu/mail/util/QPInputStream.java \
686
688
# Javadoc
687
689
javadoc:
688
690
        mkdir -p $(doc)
689
 
        $(JAVADOC) -d $(doc) -windowtitle "GNU JavaMail API documentation" \
690
 
                -sourcepath $(src) $(package_names)
 
691
        $(JAVADOC) $(JAVADOCFLAGS) -d $(doc) -sourcepath $(src) \
 
692
          -windowtitle "GNU JavaMail API documentation" $(package_names)
691
693
 
692
694
# Remove jar files and directories
693
695
clean-local:
696
698
        rm -rf $(gnumail_jar) $(providers_jar) META-INF $(dst) $(doc)
697
699
 
698
700
install-data-local:
699
 
        @srcdir@/mkinstalldirs $(prefix)/share/java
700
 
        $(INSTALL_DATA) $(gnumail_jar) $(prefix)/share/java
701
 
        $(INSTALL_DATA) $(providers_jar) $(prefix)/share/java
 
701
        @srcdir@/mkinstalldirs $(DESTDIR)/$(datadir)/java
 
702
        $(INSTALL_DATA) $(gnumail_jar) $(DESTDIR)/$(datadir)/java
 
703
        $(INSTALL_DATA) $(providers_jar) $(DESTDIR)/$(datadir)/java
702
704
 
703
705
# End of Makefile.am
704
706
# Tell versions [3.59,3.63) of GNU make to not export all variables.