~ubuntu-branches/debian/squeeze/pgadmin3/squeeze

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
##############################################################################
# pgAdmin III - PostgreSQL Tools
# $Id: Makefile.am 5015 2006-02-21 15:03:14Z dpage $
# Copyright (C) 2002 - 2010, The pgAdmin Development Team
# This software is released under the PostgreSQL Licence
#
# Makefile - Makefile for *nix systems
##############################################################################

AUTOMAKE_OPTIONS = foreign

SUBDIRS = branding i18n pgadmin xtra pkg

EXTRA_DIST = \
	$(top_srcdir)/BUGS \
	$(top_srcdir)/CHANGELOG \
	$(top_srcdir)/DEVELOPERS \
	$(top_srcdir)/INSTALL \
	$(top_srcdir)/LICENSE \
	$(top_srcdir)/README \
	$(top_srcdir)/TODO \
	$(top_srcdir)/bootstrap \
	$(top_srcdir)/configure.ac.in \
	$(top_srcdir)/languages.hwx \
	$(top_srcdir)/languages.po \
	$(top_srcdir)/pgadmin3.pot \
	$(top_srcdir)/pgadmin3-release.pot \
	$(top_srcdir)/pgAdmin3.sln \
	$(top_srcdir)/stringextract \
	$(top_srcdir)/stringmerge \
        $(top_srcdir)/docs/Docs.vcproj \
        $(top_srcdir)/docs/builddocs.bat 

TMP_docs = \
	$(top_srcdir)/docs/en_US/*.css \
	$(top_srcdir)/docs/en_US/*.html \
	$(top_srcdir)/docs/en_US/pgadmin3.hh* \
	$(top_srcdir)/docs/en_US/hints/*.html \
	$(top_srcdir)/docs/en_US/images/*.png \
	$(top_srcdir)/docs/cs_CZ/*.css \
	$(top_srcdir)/docs/cs_CZ/*.html \
    $(top_srcdir)/docs/cs_CZ/pgadmin3.hh* \
	$(top_srcdir)/docs/cs_CZ/hints/*.html \
	$(top_srcdir)/docs/cs_CZ/images/*.png \
	$(top_srcdir)/docs/de_DE/hints/*.html \
	$(top_srcdir)/docs/es_ES/hints/*.html \
	$(top_srcdir)/docs/fi_FI/hints/*.html \
	$(top_srcdir)/docs/fr_FR/*.css \
	$(top_srcdir)/docs/fr_FR/*.html \
    $(top_srcdir)/docs/fr_FR/pgadmin3.hh* \
	$(top_srcdir)/docs/fr_FR/hints/*.html \
	$(top_srcdir)/docs/fr_FR/images/*.png \
	$(top_srcdir)/docs/sl_SI/hints/*.html \
	$(top_srcdir)/docs/zh_CN/hints/*.html \
	$(top_srcdir)/docs/zh_TW/hints/*.html

if !APPBUNDLE
nobase_dist_pkgdata_DATA = $(TMP_docs)
help_cache = $(DESTDIR)/$(pkgdatadir)/docs/en_US/pgadmin3.hhp.cached
else
nobase_dist_data_DATA = $(TMP_docs)
help_cache = $(DESTDIR)/$(datadir)/docs/en_US/pgadmin3.hhp.cached
endif

# We need to ensure the help cache is world writeable
install-data-hook:
	chmod 0666 $(help_cache)