File: Makefile.am

package info (click to toggle)
volumeicon 0.5.1%2Bgit20170117-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster
  • size: 544 kB
  • ctags: 313
  • sloc: ansic: 2,610; makefile: 48; sh: 17
file content (11 lines) | stat: -rw-r--r-- 367 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
EXTRA_DIST = gui icons

install-data-local: uninstall-local
	mkdir -p "$(DESTDIR)$(pkgdatadir)"; \
	find $(EXTRA_DIST) | while read dir; do \
		test -d "$$dir" && mkdir "$(DESTDIR)$(pkgdatadir)/$$dir"; \
		test -f "$$dir" && cp "$$dir" "$(DESTDIR)$(pkgdatadir)/$$dir"; \
	done

uninstall-local:
	-test -d "$(DESTDIR)$(pkgdatadir)" && rm -rf "$(DESTDIR)$(pkgdatadir)"