~ubuntu-branches/ubuntu/jaunty/ophcrack/jaunty

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Adam Cécile (Le_Vert)
  • Date: 2008-08-11 15:58:58 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20080811155858-calnhe07mxkkqb1s
Tags: 3.0.1-1
* Upload to experimental because of lenny freeze.
* New upstream release.
* Update debian/watch.
* Switch from libgtk2.0-dev to libqt4-dev b-dep.
* Drop dpatch, not needed anymore.
* Add new package ophcrack-cli that provides command-line binary.
* Rewrite whole debian/rules to build qt4 and cli flavours.
* Update README.Debian with new tables names/urls.
* Do not depend anymore on bkhive/samdump2, both are embedded.
* Update debian/copyright.
* Add imagemagick b-dep to create icons.
* Write a new manpage for the new command line switches.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
## Process this file with automake to produce Makefile.in
2
 
 
3
 
SUBDIRS = src
4
 
 
5
 
EXTRA_DIST = \
6
 
        autogen.sh \
7
 
        LICENCE \
8
 
        LICENSE.OpenSSL \
9
 
        ophcrack.glade \
10
 
        ophcrack.gladep \
11
 
        linux_tools
12
 
 
13
 
install-data-local:
14
 
        @$(NORMAL_INSTALL)
15
 
        if test -d $(srcdir)/pixmaps; then \
16
 
          $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/pixmaps; \
17
 
          for pixmap in $(srcdir)/pixmaps/*; do \
18
 
            if test -f $$pixmap; then \
19
 
              $(INSTALL_DATA) $$pixmap $(DESTDIR)$(pkgdatadir)/pixmaps; \
20
 
            fi \
21
 
          done \
22
 
        fi
23
 
        @echo "****************************************************"
24
 
        @echo 
25
 
        @echo "Don't forget to download the tables from"
26
 
        @echo "http://lasecwww.epfl.ch/SSTIC04-10k.zip" 
27
 
        @echo "or http://lasecwww.epfl.ch/SSTIC04-5k.zip"
28
 
        @echo
29
 
        @echo "and install them in $(DESTDIR)$(pkgdatadir)/10000"
30
 
        @echo "or $(DESTDIR)$(pkgdatadir)/5000"
31
 
        @echo 
32
 
        @echo "SSTIC04-10k (388MB), for PCs with at least 256MB of RAM."
33
 
        @echo "SSTIC04-5k (720MB), for PCs with at least 512MB of RAM."
34
 
        @echo
35
 
        @echo "****************************************************"
36
 
 
37
 
install-exec-local:
38
 
        if test -d $(srcdir)/linux_tools; then \
39
 
          if test -f $(srcdir)/linux_tools/bkhive2; then \
40
 
            $(INSTALL_PROGRAM) $(srcdir)/linux_tools/bkhive2 $(bindir); \
41
 
          fi ;\
42
 
          if test -f $(srcdir)/linux_tools/samdump2; then \
43
 
            $(INSTALL_PROGRAM) $(srcdir)/linux_tools/samdump2 $(bindir); \
44
 
          fi \
45
 
        fi
46
 
 
47
 
uninstall-local:
48
 
        if test -f $(bindir)/bkhive2; then \
49
 
          rm -f $(bindir)/bkhive2; \
50
 
        fi ;\
51
 
        if test -f $(bindir)/samdump2; then \
52
 
          rm -f $(bindir)/samdump2; \
53
 
        fi ;\
54
 
        if test -d $(DESTDIR)$(pkgdatadir); then \
55
 
          rm -rf $(DESTDIR)$(pkgdatadir); \
56
 
        fi
57
 
 
58
 
dist-hook:
59
 
        if test -d pixmaps; then \
60
 
          mkdir $(distdir)/pixmaps; \
61
 
          for pixmap in pixmaps/*; do \
62
 
            if test -f $$pixmap; then \
63
 
              cp -p $$pixmap $(distdir)/pixmaps; \
64
 
            fi \
65
 
          done \
66
 
        fi