* harbour/contrib/gd/Makefile
* added install of gd.ch
* harbour/contrib/gd/gd.prg
* removed two unused vars
* harbour/contrib/libct/ctnet.c
* harbour/contrib/libct/Makefile
* added ctnet.c borrowed from xHarbour
* harbour/contrib/pgsql/postgres.c
* fixes some warnings
* harbour/contrib/tip/cgi.prg
* added session name parameter
* harbour/include/hbcompat.ch
* added gtProcessMessages() translate
32 lines
366 B
Makefile
32 lines
366 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT = ../../
|
|
|
|
C_SOURCES=\
|
|
gdwrp.c \
|
|
|
|
PRG_HEADERS=\
|
|
gd.ch \
|
|
|
|
PRG_SOURCES=\
|
|
gd.prg \
|
|
gdbar.prg \
|
|
gdchart.prg \
|
|
gdimage.prg \
|
|
gdbarcod.prg
|
|
|
|
LIBNAME=hbgd
|
|
|
|
include $(TOP)$(ROOT)config/lib.cf
|
|
|
|
ifeq ($(HB_COMPILER),mingw32)
|
|
CFLAGS := $(CFLAGS) -I/usr/include
|
|
else
|
|
CFLAGS := $(CFLAGS) -I/usr/include
|
|
endif
|
|
|
|
include $(TOP)$(ROOT)config/header.cf
|
|
|