* source/rtl/gtxwc/Makefile
* source/rtl/gtcrs/Makefile
* source/rtl/gtsln/Makefile
+ Changed to use HB_HAS_* values instead of doing autodetection
locally.
* source/rtl/gttrm/Makefile
+ Indenting.
* config/global.mk
+ Added HB_LDFLAGS variable. Not yet used.
35 lines
612 B
Makefile
35 lines
612 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT := ../../../
|
|
|
|
include $(TOP)$(ROOT)config/global.mk
|
|
|
|
LIBNAME := gtcrs
|
|
|
|
C_SOURCES := \
|
|
gtcrs.c \
|
|
|
|
ifneq ($(HB_HAS_CURSES),)
|
|
|
|
HB_CFLAGS += $(foreach d,$(HB_HAS_CURSES),-I$(d))
|
|
|
|
ifeq ($(HB_GT_CRS_BCEHACK),yes)
|
|
HB_CFLAGS += -DHB_GT_CRS_BCEHACK
|
|
endif
|
|
ifneq ($(HB_HAS_GPM),)
|
|
HB_CFLAGS += -DHB_HAS_GPM
|
|
ifeq ($(HB_GPM_NOICE_DISABLE),yes)
|
|
HB_CFLAGS += -DHB_GPM_NOICE_DISABLE
|
|
endif
|
|
endif
|
|
ifeq ($(HB_NCURSES_194),yes)
|
|
HB_CFLAGS += -DHB_NCURSES_194
|
|
endif
|
|
|
|
include $(TOP)$(ROOT)config/lib.mk
|
|
else
|
|
include $(TOP)$(ROOT)config/none.mk
|
|
endif
|