Makefile.in 518 B

1234567891011
  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