~ubuntu-branches/ubuntu/intrepid/dansguardian/intrepid-security

« back to all changes in this revision

Viewing changes to configs/downloadmanagers/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Alexander Wirt
  • Date: 2008-04-06 14:47:06 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20080406144706-2r26l1rougdmb1sd
Tags: 2.9.9.3-2
This time build with gcc 4.3 (Closes: #454889) 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
MAINTAINERCLEANFILES = Makefile.in \
 
2
                       default.conf fancy.conf trickle.conf
 
3
 
 
4
DGDATADIR = $(sysconfdir)/$(PACKAGE_NAME)/downloadmanagers
 
5
 
 
6
SUBDIRS = .
 
7
 
 
8
FLISTS = default.conf
 
9
 
 
10
if ENABLE_FANCYDM
 
11
FLISTS += fancy.conf
 
12
endif
 
13
 
 
14
if ENABLE_TRICKLEDM
 
15
FLISTS += trickle.conf
 
16
endif
 
17
 
 
18
EXTRA_DIST = default.conf.in fancy.conf.in trickle.conf.in
 
19
 
 
20
install-data-local: 
 
21
        $(mkinstalldirs) $(DESTDIR)$(DGDATADIR) && \
 
22
        for l in $(FLISTS) ; do \
 
23
                echo "$(INSTALL_DATA) $$l $(DESTDIR)$(DGDATADIR)/$$l"; \
 
24
                $(INSTALL_DATA) $$l $(DESTDIR)$(DGDATADIR)/$$l; \
 
25
        done
 
26
 
 
27
 
 
28
uninstall-local:
 
29
        for l in $(FLISTS) ; do \
 
30
                rm -f $(DESTDIR)$(DGDATADIR)/$$l ; \
 
31
        done