* INSTALL
* config/global.mk
* config/detfun.mk
* config/detect.mk
* external/sqlite3/Makefile
* external/png/Makefile
* external/jpeg/Makefile
* external/bzip2/Makefile
* external/libhpdf/Makefile
* contrib/hbsqlit3/Makefile
* contrib/hbmzip/Makefile
* contrib/hbbz2/Makefile
* contrib/hbhpdf/Makefile
* contrib/sddsqlt3/Makefile
* contrib/hbwin/Makefile
+ Added HB_ROOT variable which can be used to specify Harbour
source tree root as an absolute directory, when using
older than 3.81 GNU Make version (f.e. on QNX).
+ Changed the way locally hosted source directories are
specified for detection function, in order to support
HB_ROOT functionality.
36 lines
638 B
Makefile
36 lines
638 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT := ../../
|
|
|
|
include $(TOP)$(ROOT)config/global.mk
|
|
|
|
LIBNAME := hbbz2
|
|
|
|
C_SOURCES := \
|
|
hbbz2.c \
|
|
|
|
PRG_HEADERS := \
|
|
hbbz2.ch
|
|
|
|
_DET_DSP_NAME := bzip2
|
|
_DET_VAR_INC_ := HB_INC_BZIP2
|
|
_DET_VAR_HAS_ := HB_HAS_BZIP2
|
|
_DET_FLT_PLAT := !wce
|
|
_DET_FLT_COMP :=
|
|
_DET_INC_DEFP := /usr/include
|
|
_DET_INC_LOCL := external/bzip2
|
|
_DET_INC_HEAD := /bzlib.h
|
|
include $(TOP)$(ROOT)config/detfun.mk
|
|
|
|
ifneq ($(HB_HAS_BZIP2),)
|
|
HB_CFLAGS += $(foreach d,$(HB_HAS_BZIP2),-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
|