Files
harbour-core/harbour/contrib/hbgd/Makefile
Viktor Szakats 10c88f316c 2010-06-01 01:46 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* 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.
2010-05-31 23:47:15 +00:00

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