* doc/es/Makefile
* doc/whatsnew.txt
* source/lang/Makefile
* source/rtl/gtcrs/Makefile
* source/main/Makefile
* source/debug/Makefile
* source/codepage/Makefile
* source/rdd/hbsix/Makefile
* source/compiler/Makefile
* contrib/hbgf/os2pm/Makefile
* contrib/hbgf/gtk/Makefile
* Some TAB/space cleanup.
36 lines
688 B
Makefile
36 lines
688 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT = ../../../
|
|
|
|
C_SOURCES=\
|
|
gtcrs.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
|