File: Makefile.am

package info (click to toggle)
faumachine 20180503-4
  • links: PTS
  • area: main
  • in suites: buster
  • size: 61,272 kB
  • sloc: ansic: 272,290; makefile: 6,199; asm: 4,251; sh: 3,022; perl: 886; xml: 563; pascal: 311; lex: 214; vhdl: 204
file content (19 lines) | stat: -rw-r--r-- 642 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#
# Copyright (C) 1994-2014 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
#

install-data-local:
	find . -mindepth 2 | grep -v "/CVS" \
	| while read file ; do \
		dir=$$(dirname $${file}) ; \
		if [ -d $${dir} -a ! -d $(DESTDIR)/$(experimentsdir)/$${dir} ]; then \
			mkdir -p $(DESTDIR)/$(experimentsdir)/$${dir} ; \
		fi ; \
		if [ -f $${file} -a ! -L $${file} ]; then \
			$(INSTALL) -m 644 $${file} $(DESTDIR)/$(experimentsdir)/$${file} ; \
		fi ; \
	done