Makefile 538 B

12345678910111213
  1. # uClibc unistd tests
  2. # Licensed under the GNU Library General Public License, see COPYING.LIB
  3. include ../Test.mak
  4. OPTS_getopt := -abcXXX -9
  5. OPTS_getopt_long := --add XXX --delete YYY --verbose
  6. ifeq ($(UCLIBC_HAS_GNU_GETOPT),y)
  7. OPTS_tstgetopt := -a -b -cfoobar --required foobar --optional=bazbug --none random --col --color --colour
  8. else
  9. # reordering is not supported, behaves as if POSIXLY_CORRECT would be set
  10. OPTS_tstgetopt := -a -b -cfoobar --required foobar --optional=bazbug --none --colou --color --colour random
  11. endif