chiark / gitweb /
test-common: Cope if argv0 starts with ./
[secnet.git] / stest / Makefile.in
1
2 VPATH:=@srcdir@
3 srcdir:=@srcdir@
4 topdir:=@top_srcdir@
5
6 TARGETS += udp-preload.so
7
8 DEPS += udp-preload.so
9 DEPS += $(srcdir)/common.tcl
10 DEPS += ../secnet
11 DEPS += ../test-example/sites.conf
12
13 TESTDIR=stest
14
15 include ../test-common.make
16
17 CFLAGS += -D_REENTRANT -fPIC
18
19 udp-preload.so: udp-preload.o
20         $(CC) -shared -Wl,-soname,$@.1 $^ -o $@ -ldl
21
22 # These test scripts use little cpu but contain sleeps etc.  So when
23 # there are several, we are going to want to run *loads* in parallel.
24 #
25 # Ideally we would do something like "every one of these counts for a
26 # tenth of a job" but make can't do that.  So bodge it: we treat all the
27 # tests as a single job, and disconnect the parent's jobserver.
28 #
29 # make.info says $(MAKE) causes special handling of the rule but only
30 # if it's written literally like that in the rule, hence this
31 # indirection.  We need no squash MAKEFLAGS and MFLAGS too.
32 # MAKELEVEL seems like it will be fine to pass on.
33
34 MAKE_NOTSPECIAL:=$(MAKE)
35
36 check:
37         env -u MAKEFLAGS -u MFLAGS \
38         $(MAKE_NOTSPECIAL) -j$(shell nproc || 1)0 check-real