Fix warnings emitted by Apple LLVM version 7.3.0 (clang-703.0.29)
[tig.git] / contrib / config.make
blob16a1003edd7a18507de5bfaa344df189a0818c27
1 # Example config.make.
3 # Install files under /usr/local instead of under $HOME.
4 prefix=/usr/local
6 # Use ncursesw.
7 LDLIBS = -lncursesw
8 CPPFLAGS = -DHAVE_NCURSESW_CURSES_H
10 # Use readline.
11 #LDLIBS += -lreadline
12 #CPPFLAGS += -DHAVE_READLINE
14 # Uncomment to enable work-around for missing setenv().
15 #NO_SETENV=y
17 # Uncomment to enable work-around for missing mkstemps().
18 #NO_MKSTEMPS=y
20 # Uncomment to not include built-in tigrc inside the binary.
21 #NO_BUILTIN_TIGRC=y
23 # vim: ft=make: