Do ncurses by default

This commit is contained in:
Alexander S. Aganichev 2001-03-16 06:22:01 +00:00
parent 8b8b88b7af
commit b6cb2cc5af

View File

@ -51,11 +51,12 @@ CFLAGS+=-g -funsigned-char $(INCS) -Wall -Wno-sign-compare -pedantic -O2# -fomit
LNKFLAGS+=-g
CPPFLAGS+=$(CFLAGS) -fno-exceptions -fno-rtti
# uncomment following lines if you like ncurses
# ifeq ($(PLATFORM),lnx)
# CPPFLAGS+=-D__USE_NCURSES__
# STDLIBS+=-lncurses
# endif
# comment following lines if you dislike ncurses
# NOTE: lnx is active for any *NIX system and only ncurses mode is portable
ifeq ($(PLATFORM),lnx)
CPPFLAGS+=-D__USE_NCURSES__
STDLIBS+=-lncurses
endif
# force not to use coprocessor features in DOS, if you have one you may remove this
ifeq ($(PLATFORM),djg)