* utils/hbmk2/hbmk2.prg
+ Will now ignore current and host directory when looking
for system headers (<>) in header dependency finder code.
+ contrib/hbmysql/hbmysql.hbp
+ contrib/sddmy/sddmy.hbp
+ contrib/sddfb/sddfb.hbp
+ contrib/sddpg/sddpg.hbp
+ contrib/hbcups/hbcups.hbp
+ contrib/hbpgsql/hbpgsql.hbp
+ contrib/rddads/rddads.hbp
+ contrib/hbfimage/hbfimage.hbp
+ contrib/hbgd/hbgd.hbp
+ contrib/sddoci/sddoci.hbp
+ contrib/hbcairo/hbcairo.hbp
+ Added new hbmk2 make files.
* contrib/hbgd/Makefile
- Deleted some information from cmoment. (now included in INSTALL)
* contrib/hbcairo/hbcairo.h
* Formatting.
45 lines
719 B
Makefile
45 lines
719 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT := ../../
|
|
|
|
include $(TOP)$(ROOT)config/global.mk
|
|
|
|
LIBNAME := hbgd
|
|
|
|
C_SOURCES := \
|
|
gdwrp.c \
|
|
|
|
PRG_HEADERS := \
|
|
gd.ch \
|
|
gdextern.ch \
|
|
|
|
PRG_SOURCES := \
|
|
gd.prg \
|
|
gdbar.prg \
|
|
gdchart.prg \
|
|
gdimage.prg \
|
|
gdbarcod.prg \
|
|
|
|
_DET_DSP_NAME := libgd
|
|
_DET_VAR_INC_ := HB_INC_GD
|
|
_DET_VAR_HAS_ := HB_HAS_GD
|
|
_DET_FLT_PLAT :=
|
|
_DET_FLT_COMP :=
|
|
_DET_INC_DEFP := /usr/include /opt/local/include
|
|
_DET_INC_HEAD := /gd.h
|
|
include $(TOP)$(ROOT)config/detfun.mk
|
|
|
|
ifneq ($(HB_HAS_GD),)
|
|
|
|
HB_CFLAGS += $(foreach d,$(HB_HAS_GD),-I$(d))
|
|
|
|
include $(TOP)$(ROOT)config/header.mk
|
|
include $(TOP)$(ROOT)config/lib.mk
|
|
|
|
else
|
|
HB_SKIP_REASON := $(_DET_RES_TEXT)
|
|
include $(TOP)$(ROOT)config/none.mk
|
|
endif
|