Makefile.in 803 B

1234567891011121314151617181920
  1. # uClibc unistd tests
  2. # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  3. OPTS_getopt := -abcXXX -9
  4. OPTS_getopt_long := --add XXX --delete YYY --verbose
  5. ifeq ($(UCLIBC_HAS_GNU_GETOPT),y)
  6. OPTS_tstgetopt := -a -b -cfoobar --required foobar --optional=bazbug --none random --col --color --colour
  7. else
  8. # reordering is not supported, behaves as if POSIXLY_CORRECT would be set
  9. OPTS_tstgetopt := -a -b -cfoobar --required foobar --optional=bazbug --none --colou --color --colour random
  10. endif
  11. # getconf.c lives in utils/
  12. # Testsuite cannot currently be built with O= anyway, so hardcode path here
  13. getconf.c:
  14. $(LN_S) ../../utils/$(@F) .
  15. EXTRA_CLEAN += getconf.c
  16. TESTS_DISABLED += getconf
  17. CFLAGS_getconf = -DGETCONF_DIR='"$(CURDIR)"'
  18. shell_tst-getconf: getconf getconf_glibc