File: Makefile.am

package info (click to toggle)
anyremote 6.4-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 6,292 kB
  • ctags: 1,741
  • sloc: ansic: 15,280; sh: 4,171; python: 107; makefile: 52
file content (49 lines) | stat: -rw-r--r-- 2,324 bytes parent folder | download
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
# 
# anyRemote - a bluetooth remote for your PC.
#
# Copyright (C) 2007-2014 Mikhail Fedotov <anyremote@mail.ru>
# 
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.

# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.

# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 
# 

SUBDIRS = src

EXTRA_DIST = INSTALL NEWS README COPYING AUTHORS TODO anyremote.1.gz ChangeLog doc-html keymaps cfg-data specs

install-data-local:
	test -z $(DESTDIR)$(pkgdatadir) || mkdir -p -- . $(DESTDIR)$(pkgdatadir)
	test -z $(DESTDIR)$(docdir) || mkdir -p -- . $(DESTDIR)$(docdir)
	cp -r cfg-data $(DESTDIR)$(pkgdatadir)
	rm -rf $(DESTDIR)$(pkgdatadir)/cfg-data/obsoleted
	cp -r doc-html ChangeLog README COPYING AUTHORS $(DESTDIR)$(docdir)/
	find $(DESTDIR)$(pkgdatadir) $(DESTDIR)$(docdir) -type f -exec chmod 644 {} \;
	chmod a+x $(DESTDIR)$(pkgdatadir)/cfg-data/Utils/all-in-1.py 
	chmod a+x $(DESTDIR)$(pkgdatadir)/cfg-data/Utils/generate_cover.sh
	chmod a+x $(DESTDIR)$(pkgdatadir)/cfg-data/Utils/generate_poster.sh
	chmod a+x $(DESTDIR)$(pkgdatadir)/cfg-data/Utils/getPlayList.sh
	chmod a+x $(DESTDIR)$(pkgdatadir)/cfg-data/Utils/message.sh 
	chmod a+x $(DESTDIR)$(pkgdatadir)/cfg-data/Utils/pulse-audio-ctl.sh
	chmod a+x $(DESTDIR)$(pkgdatadir)/cfg-data/Utils/registry.sh
	chmod a+x $(DESTDIR)$(pkgdatadir)/cfg-data/Utils/run-or-switch-to.sh
	chmod a+x $(DESTDIR)$(pkgdatadir)/cfg-data/Utils/weather.sh
	find $(DESTDIR)$(pkgdatadir) $(DESTDIR)$(docdir) -type d -exec chmod 755 {} \;
	test -z $(DESTDIR)$(datadir)/man/man1 || mkdir -p -- . $(DESTDIR)$(datadir)/man/man1
	cp -r anyremote.1.gz $(DESTDIR)$(datadir)/man/man1
	chmod 644 $(DESTDIR)$(datadir)/man/man1/anyremote.1.gz

uninstall-local:
	rm -rf $(DESTDIR)$(pkgdatadir)
	rm -rf $(DESTDIR)$(docdir)
	rm -f $(DESTDIR)$(datadir)/man/man1/anyremote.1.gz