File: Makefile.am

package info (click to toggle)
creduce 2.9~20181016-1
  • links: PTS
  • area: main
  • in suites: buster
  • size: 4,360 kB
  • sloc: cpp: 23,977; ansic: 7,062; sh: 4,918; perl: 2,679; makefile: 472; lex: 441
file content (45 lines) | stat: -rw-r--r-- 971 bytes parent folder | download | duplicates (6)
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
## -*- mode: Makefile-Automake -*-
##
## Copyright (c) 2012, 2015 The University of Utah
## All rights reserved.
##
## This file is distributed under the University of Illinois Open Source
## License.  See the file COPYING for details.

###############################################################################

dist_noinst_SCRIPTS = \
	run_tests \
	test0.bat \
	test0.sh \
	test1.sh \
	test2.sh \
	test3.sh \
	test4.sh \
	test5.sh \
	test6.sh \
	test7.sh

dist_noinst_DATA = \
	file1.c \
	file2.c \
	file3.c

###

# The following rules are for the convenience of people who want to run tests
# in a separate build tree.
#
all-local:
	for f in $(dist_noinst_SCRIPTS) $(dist_noinst_DATA); do \
	  test -e "$$f" || ln -s "$(srcdir)/$$f" "$$f"; \
	done

clean-local:
	for f in $(dist_noinst_SCRIPTS) $(dist_noinst_DATA); do \
	  test \! -L "$$f" || rm -f "$$f"; \
	done

###############################################################################

## End of file.