Makefile.in 581 B

123456789101112131415161718192021222324
  1. # uClibc silly tests
  2. # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  3. RET_hello := 42
  4. RET_tiny := 42
  5. ifeq ($(TARGET_ARCH),ia64)
  6. TESTS_DISABLED += tst-atomic tst-atomic-long
  7. endif
  8. ifeq ($(TARGET_ARCH),mips)
  9. TESTS_DISABLED += tst-atomic tst-atomic-long
  10. endif
  11. ifeq ($(TARGET_ARCH),sparc)
  12. TESTS_DISABLED += tst-atomic tst-atomic-long
  13. endif
  14. atomic_headers := -I$(top_srcdir)libc/sysdeps/linux/$(TARGET_ARCH) \
  15. -I$(top_srcdir)libc/sysdeps/linux \
  16. -I$(top_builddir)include
  17. CFLAGS_tst-atomic = $(atomic_headers)
  18. CFLAGS_tst-atomic-long = $(atomic_headers)