summaryrefslogtreecommitdiffstats
path: root/tests/Makefile.am
blob: 9d9b6bc6e6b819c3573b1542a827f43dd94688c6 (plain)
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
46
47
48
49
50
51
52
53
54
55
56
check_PROGRAMS = main main-scoped simple big-dynstr

TESTS = plain-fail.sh plain-run.sh shrink-rpath.sh set-interpreter-short.sh \
  set-interpreter-long.sh set-rpath.sh no-rpath.sh big-dynstr.sh \
  set-rpath-library.sh

TESTS_ENVIRONMENT = PATCHELF_DEBUG=1


simple_SOURCES = simple.c
main_scoped_SOURCES =


main: main.o libfoo.so
	LD_LIBRARY_PATH=. gcc -Wl,--disable-new-dtags -o main main.o -L . -lfoo

main-scoped: main.o libfoo-scoped.so
	LD_LIBRARY_PATH=. gcc -Wl,--enable-new-dtags -o main-scoped main.o -L . -lfoo-scoped

main.o: main.c
	$(CC) -fpic -o main.o -c main.c

libfoo.so: foo.o libbar.so
	NIX_DONT_SET_RPATH=1 $(CC) -Wl,--disable-new-dtags -shared -o libfoo.so foo.o -L . -lbar

libfoo-scoped.so: foo.o libbar-scoped.so
	NIX_DONT_SET_RPATH=1 $(CC) -Wl,--enable-new-dtags -shared -o libfoo-scoped.so foo.o -L . -lbar-scoped

foo.o: foo.c
	$(CC) -fpic -o foo.o -c foo.c

libbar.so: bar.o
	NIX_DONT_SET_RPATH=1 $(CC) -Wl,--disable-new-dtags -shared -o libbar.so bar.o -L . -Wl,-rpath,`pwd`/no-such-path

libbar-scoped.so: bar.o
	NIX_DONT_SET_RPATH=1 $(CC) -Wl,--enable-new-dtags -shared -o libbar-scoped.so bar.o

bar.o: bar.c
	$(CC) -fpic -o bar.o -c bar.c


big_dynstr_SOURCES = big-dynstr.c

big-dynstr: big-dynstr.o libfoo.so
	LD_LIBRARY_PATH=. gcc -Wl,--disable-new-dtags -o big-dynstr big-dynstr.o -L . -lfoo

big-dynstr.c: main.c
	cat main.c > big-dynstr.c
	for i in $$(seq 1 2000); do echo "void f$$i(void) { };" >> big-dynstr.c; done


clean-local:
	$(RM) *.o libfoo.so libbar.so main big-dynstr big-dynstr.c


EXTRA_DIST = main.c foo.c bar.c no-rpath $(TESTS)