summaryrefslogtreecommitdiffstats
path: root/tests/common/Makefile
blob: 4ee04dd71dfc41909a600fd26282cc3c392c15f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
all: \
	fopen_failure.so \
	link_failure.so \
	open_RDONLY_failure.so \
	open_RDWR_failure.so \
	rename_failure.so \
	rmdir_failure.so \
	time_0.so \
	time_past.so \
	unlink_failure.so \
	unlinkat_failure.so

%.so: %.c
	gcc -W -Wall -pedantic -g $< -shared -ldl -o $@