File: Makefile.am

package info (click to toggle)
tinyproxy 1.11.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 916 kB
  • sloc: ansic: 6,317; sh: 365; perl: 349; makefile: 203; awk: 4
file content (41 lines) | stat: -rw-r--r-- 566 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
SUBDIRS = \
	src \
	data \
	etc \
	docs \
	m4macros \
	tests \
	scripts

# tools want this on a single line
ACLOCAL_AMFLAGS = -I m4macros

all-local:

dist_doc_DATA = \
	AUTHORS \
	NEWS \
	README \
	README.md

EXTRA_DIST = \
	autogen.sh \
	tinyproxy-indent.sh \
	TODO \
	VERSION

test: all
	./tests/scripts/run_tests.sh

.PHONY: shellcheck
shellcheck:
	@shellcheck `find . -name '*.sh'`

test-wait:
	TINYPROXY_TESTS_WAIT=yes $(MAKE) test

valgrind-test: all
	./tests/scripts/run_tests_valgrind.sh

valgrind-test-wait:
	TINYPROXY_TESTS_WAIT=yes $(MAKE) valgrind-test