File: Makefile.am

package info (click to toggle)
pgadmin3 1.20.0~beta2-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 73,704 kB
  • ctags: 18,591
  • sloc: cpp: 193,786; ansic: 18,736; sh: 5,154; pascal: 1,120; yacc: 927; makefile: 516; lex: 421; xml: 126; perl: 40
file content (36 lines) | stat: -rw-r--r-- 1,601 bytes parent folder | download | duplicates (2)
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
##############################################################################
# pgAdmin III - PostgreSQL Tools
# 
# Copyright (C) 2002 - 2009, The pgAdmin Development Team
# This software is released under the PostgreSQL Licence
#
# Makefile - Makefile for *nix systems
##############################################################################

EXTRA_DIST = \
	$(srcdir)/complete-bundle.sh \
	$(srcdir)/create-dmg.sh \
	$(srcdir)/debug-bundle.sh \
	$(srcdir)/pgadmin.Info.plist \
	$(srcdir)/pgadmin.Info.plist.in \
	$(srcdir)/debug.pgadmin.Info.plist \
	$(srcdir)/debug.pgadmin.Info.plist.in \
	$(srcdir)/licence.r \
	$(srcdir)/pgAdmin3.icns \
	$(srcdir)/sql.icns \
	$(srcdir)/PkgInfo 

install-exec-hook:
if APPBUNDLE
	$(install_sh_DATA) PkgInfo $(bundledir)/Contents/PkgInfo
	$(install_sh_DATA) pgadmin.Info.plist $(bundledir)/Contents/Info.plist
	$(install_sh_DATA) "pgAdmin3.icns" "$(bundledir)/Contents/Resources/pgAdmin3.icns"
	$(install_sh_DATA) "sql.icns" "$(bundledir)/Contents/Resources/sql.icns"
	$$($(WX_CONFIG) --rescomp | sed 's/-t[[:space:]]*APPL//') \
		 "$(bundledir)/Contents/Resources/pgAdmin3.rsrc" -useDF
	$(install_sh_PROGRAM) "$$($(PG_CONFIG) --bindir)/pg_dump" "$(bundledir)/Contents/SharedSupport/pg_dump"
	$(install_sh_PROGRAM) "$$($(PG_CONFIG) --bindir)/pg_dumpall" "$(bundledir)/Contents/SharedSupport/pg_dumpall"
	$(install_sh_PROGRAM) "$$($(PG_CONFIG) --bindir)/pg_restore" "$(bundledir)/Contents/SharedSupport/pg_restore"
	$(install_sh_PROGRAM) "$$($(PG_CONFIG) --bindir)/psql" "$(bundledir)/Contents/SharedSupport/psql"
	./complete-bundle.sh "$(bundledir)"
endif