File: Makefile.am

package info (click to toggle)
alsaplayer 0.99.82-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,892 kB
  • sloc: ansic: 40,741; cpp: 14,400; makefile: 983; sh: 796; lex: 751; asm: 45; python: 29; sed: 16
file content (26 lines) | stat: -rw-r--r-- 672 bytes parent folder | download | duplicates (7)
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
EXTRA_DIST = README desert.theme alsaplayer.desktop

DESKTOP_DIR=$(datadir)/applications

install-data-local:
	$(mkinstalldirs) $(DESTDIR)$(DESKTOP_DIR)
	(installfiles=`echo *.desktop`; \
	if test "$$installfiles" = '*.desktop'; \
	then echo '--Nothing to install' ; \
	else \
	  for i in $$installfiles ; do \
	    echo '-- Installing '$$i ; \
	    $(INSTALL_DATA) $$i $(DESTDIR)$(DESKTOP_DIR); \
	  done; \
	fi)

uninstall-local:
	(installfiles=`echo *.desktop`; \
	if test "$$installfiles" = '*.desktop'; \
	then echo '--Nothing to uninstall' ; \
	else \
	  for i in $$installfiles ; do \
	    echo '-- Unstalling '$$i ; \
	    rm $(DESKTOP_DIR)/$$i; \
	  done; \
	fi)