10 #RCU debug (slower, with error-checks)
15 HOSTTYPE=$(shell uname -m)
17 ifeq ("${HOSTTYPE}","x86_64")
20 ifeq ("${HOSTTYPE}","i586")
23 ifeq ("${HOSTTYPE}","i686")
26 ifeq ("${HOSTTYPE}","powerpc")
29 ifeq ("${HOSTTYPE}","ppc64")
32 ifeq ("${HOSTTYPE}","s390")
35 ifeq ("${HOSTTYPE}","s390x")
39 #Build the library without using signals. Slower read-side.
40 #CFLAGS+=-DCONFIG_URCU_AVOID_SIGNALS
42 #Changing the signal number used by the library. SIGUSR1 by default.
43 #CFLAGS+=-DSIGURCU=SIGUSR2
45 SRC_DEP=`echo $^ | sed 's/[^ ]*\.h//g'`