#
# $Id: Makefile,v 1.7 2006/01/12 13:16:08 druzus Exp $
#

ROOT = ../../../

C_SOURCES=\
    gtcrs.c \
    chrmap.c \

LIBNAME=gtcrs

include $(TOP)$(ROOT)config/lib.cf

# a workaround of a problem with different include directories 
# for slang curses files between different unix distributions
ifeq ($(HB_NCURSES_FINK),yes)
  CFLAGS += -I/sw/include -I/sw/include/ncurses
else
  ifeq ($(HB_NCURSES_194),yes)
    CFLAGS += -I/usr/include/ncur194
    CFLAGS += -DHB_NCURSES_194
  else
    CFLAGS += -I/usr/include/ncurses
    ifeq ($(HB_GT_CRS_BCEHACK),yes)
      CFLAGS += -DHB_GT_CRS_BCEHACK
    endif
  endif
endif

ifeq ($(HB_GPM_MOUSE),yes)
  CFLAGS += -DHAVE_GPM_H
ifeq ($(HB_GPM_NOICE_DISABLE),yes)
  CFLAGS += -DHB_GPM_NOICE_DISABLE
endif
endif

ifeq ($(HB_MULTI_GT),yes)
  CFLAGS += -DHB_MULTI_GT
endif
