bin_PROGRAMS = \ float_bench \ ff_bench \ pi_int \ pi_fpu AM_CPPFLAGS = \ -I$(top_builddir) float_bench_SOURCES = \ float_bench.c float_bench_LDADD = -lm ff_bench_SOURCES = \ ff_bench.c ff_bench_LDADD = -lm pi_int_SOURCES = \ pi8.c pi_fpu_SOURCES = \ pi8.c pi_fpu_CPPFLAGS = -DUSEFPU if TARGET_ARM # This is only relevant for architectures with and/or without FPU support # (like ARM v4/v5/v6). Intended to check if hardware floating point is working bin_PROGRAMS += pi_fpu_soft pi_fpu_soft_SOURCES = \ pi8.c pi_fpu_soft_CPPFLAGS = -DUSEFPU pi_fpu_soft_CFLAGS = -mfloat-abi=soft endif MAINTAINERCLEANFILES = \ GNUmakefile.in