~ubuntu-branches/ubuntu/oneiric/postgresql-9.1/oneiric-security

« back to all changes in this revision

Viewing changes to src/timezone/tznames/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2011-05-11 10:41:53 UTC
  • Revision ID: james.westby@ubuntu.com-20110511104153-psbh2o58553fv1m0
Tags: upstream-9.1~beta1
ImportĀ upstreamĀ versionĀ 9.1~beta1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#-------------------------------------------------------------------------
 
2
#
 
3
# Makefile
 
4
#    Makefile for the timezone names
 
5
 
 
6
# IDENTIFICATION
 
7
#    src/timezone/tznames/Makefile
 
8
#
 
9
#-------------------------------------------------------------------------
 
10
 
 
11
subdir = src/timezone/tznames
 
12
top_builddir = ../../..
 
13
include $(top_builddir)/src/Makefile.global
 
14
 
 
15
TZNAMES_TEMPLATES = Africa.txt America.txt Antarctica.txt Asia.txt \
 
16
        Atlantic.txt Australia.txt Etc.txt Europe.txt Indian.txt Pacific.txt
 
17
TZNAMES_TEMPLATES_FILES = $(TZNAMES_TEMPLATES:%=$(srcdir)/%)
 
18
 
 
19
TZNAMES_SETS = Default Australia India
 
20
TZNAMES_SETS_FILES = $(TZNAMES_SETS:%=$(srcdir)/%)
 
21
 
 
22
install: installdirs
 
23
        $(INSTALL_DATA) $(TZNAMES_TEMPLATES_FILES) '$(DESTDIR)$(datadir)/timezonesets'
 
24
        $(INSTALL_DATA) $(TZNAMES_SETS_FILES) '$(DESTDIR)$(datadir)/timezonesets'
 
25
 
 
26
installdirs:
 
27
        $(MKDIR_P) '$(DESTDIR)$(datadir)/timezonesets'
 
28
 
 
29
uninstall:
 
30
        rm -rf '$(DESTDIR)$(datadir)/timezonesets'