chiark / gitweb /
test-example: Test new long-term key arrangements
[secnet.git] / stest / Dir.sd.mk
1
2 &TARGETS += & udp-preload.so
3
4 &DEPS += & udp-preload.so
5 &DEPS += &^ common.tcl
6 &DEPS += secnet
7 &DEPS += test-example/sites.conf
8 &DEPS += test-example/sites-nonego.conf
9 &DEPS += test-example/inside.key
10 &DEPS += test-example/outside.key
11 &DEPS += test-example/all-privkeys
12
13 &:include test-common.sd.mk
14
15 &OBJECTS += & udp-preload.o
16
17 $(&OBJECTS) : ALL_CFLAGS += -D_REENTRANT -fPIC -Wno-unused-result
18
19 &udp-preload.so: $(&OBJECTS)
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:: $(&DEPS)
37         env -u MAKEFLAGS -u MFLAGS \
38         $(MAKE_NOTSPECIAL) -f main.mk -j$(shell nproc || echo 1)0 &check-real
39
40 &:include subdirmk/cdeps.sd.mk