patch-testcases_misc_math_float_Makefile 666 B

123456789101112131415161718
  1. $Id$
  2. Excluded bessel tests as they do not compile.
  3. FIXME: needs some asm rework perhaps.
  4. --- ltp-full-20061121.orig/testcases/misc/math/float/Makefile 2006-11-21 21:31:27.000000000 +0100
  5. +++ ltp-full-20061121/testcases/misc/math/float/Makefile 2006-12-06 11:31:45.000000000 +0100
  6. @@ -1,10 +1,10 @@
  7. CFLAGS+= -I../../../../include -Wall -g
  8. LOADLIBES+= -lpthread -lm -L../../../../lib -lltp
  9. -SRCS=$(wildcard float*.c)
  10. +SRCS=$(patsubst float_bessel.c,,$(wildcard float*.c))
  11. TARGETS=$(patsubst %.c,%,$(SRCS))
  12. -SUBDIRS=bessel exp_log iperb power trigo
  13. +SUBDIRS=exp_log iperb power trigo
  14. all: $(TARGETS)
  15. @set -e; for i in $(SUBDIRS); do $(MAKE) -C $$i ; done