File: Makefile.am

package info (click to toggle)
lxcfs 4.0.7-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,284 kB
  • sloc: ansic: 9,684; sh: 4,739; makefile: 194
file content (22 lines) | stat: -rw-r--r-- 501 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
EXTRA_DIST = \
	cpusetrange.c \
	main.sh \
	test_cgroup \
	test_confinement.sh \
	test_meminfo_hierarchy.sh \
	test_proc \
	test-read.c \
	test_read_proc.sh \
	test_readdir \
	test_reload.sh \
	test_sigusr2.sh \
	test_syscalls.c

TEST_READ: test-read.c
	$(CC) -o test-read test-read.c
TEST_CPUSET: cpusetrange.c
	$(CC) -I../ -I../src/ -o cpusetrange cpusetrange.c ../src/cpuset_parse.c
TEST_SYSCALLS: test_syscalls.c
	$(CC) -o test_syscalls test_syscalls.c

tests: TEST_READ TEST_CPUSET TEST_SYSCALLS