~wibblymat/ubuntu/oneiric/sagan/ftbfs-jam

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Pierre Chifflier
  • Date: 2011-03-17 15:18:58 UTC
  • Revision ID: james.westby@ubuntu.com-20110317151858-iqvfx0hsxlamxp6b
Tags: upstream-0.1.9~svn129
ImportĀ upstreamĀ versionĀ 0.1.9~svn129

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
AUTOMAKE_OPIONS=foreign no-dependencies
 
2
SUBDIRS = src
 
3
 
 
4
INCLUDES = @INCLUDES@
 
5
 
 
6
# Install BFD include file, and others that it needs.
 
7
#install-data-local: 
 
8
#       @$(NORMAL_INSTALL)
 
9
#       $(mkinstalldirs) $(sysconfdir)
 
10
#       $(INSTALL_DATA)sagan.conf $(sysconfdir)/sagan.conf
 
11
 
 
12
install-data-local:
 
13
        test -z "$(DESTDIR)$(sysconfdir)" || /bin/mkdir -p "$(DESTDIR)$(sysconfdir)"
 
14
        test -f "$(DESTDIR)$(sysconfdir)/sagan.conf" || $(INSTALL_DATA) etc/sagan.conf "$(DESTDIR)$(sysconfdir)/sagan.conf"
 
15
        test -z "$(DESTDIR)$(sbindir)" || /bin/mkdir -p "$(DESTDIR)$(sbindir)"
 
16
        $(INSTALL) -d "$(DESTDIR)$(mandir)/man8"
 
17
        $(INSTALL) -m 644 etc/sagan.8 "$(DESTDIR)$(mandir)/man8"
 
18
        $(INSTALL) -m 755 src/sagan "$(DESTDIR)$(sbindir)/sagan"
 
19
        $(INSTALL) -d "$(DESTDIR)/var/log/sagan"
 
20
        $(INSTALL) -d "$(DESTDIR)/var/run/sagan"
 
21
        @echo ""
 
22
        @echo "------------------------------------------------------------------------------"
 
23
        @echo "Sagan has been installed!  You still need to do a few more things before your"
 
24
        @echo "up and running. Please see https://wiki.softwink.com/bin/view/Main/SaganHOWTO"
 
25
        @echo "for more information."
 
26
        @echo "------------------------------------------------------------------------------"
 
27
        @echo ""
 
28
 
 
29
 
 
30