Reorder test directory setup and TEST_OPTS parsing
[tig.git] / contrib / config.make-CYGWIN_NT-6.1
blob087ef135ba8c5aa4ed90ae5bea2ba17e6d5c38d0
1 # Example configuration for Cygwin (`uname -s` = CYGWIN_NT-6.1)
3 # Use ncursesw.
5 NCURSESW_LIBS = $(shell ncursesw5-config --libs 2>/dev/null) 
6 HAS_ICONV = $(shell test -e "/usr/include/iconv.h" && echo true)
8 ifeq ($(NCURSESW_LIBS),)
9 $(error Please install the libncursesw-devel package)
10 endif
12 ifneq ($(HAS_ICONV),true)
13 $(error Please install the libiconv-devel package)
14 endif
16 LDLIBS = $(NCURSESW_LIBS) -liconv
17 CPPFLAGS = -DHAVE_NCURSESW_CURSES_H
19 # vim: ft=make: