* harbour/config/w32/mingw32.cf
* fixed typo
* harbour/include/Makefile
* removed reference to deleted hbrddwrk.h
* harbour/include/std.ch
* added SET EOL <x> clause
* harbour/include/hbcompat.ch
* fixed typos and added TEXT INTO
* harbour/contrib/gd/Makefile
* fixed install of includes
* harbour/contrib/gd/gdwrp.c
* fixed warnings
35 lines
443 B
Makefile
35 lines
443 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
|
|
|
|
ifeq ($(HB_COMPILER),mingw32)
|
|
CFLAGS := $(CFLAGS) -I/usr/include
|
|
else
|
|
CFLAGS := $(CFLAGS) -I/usr/include
|
|
endif
|
|
|
|
include $(TOP)$(ROOT)config/header.cf
|
|
INSTALL_RULE_HEADERS := $(INSTALL_RULE)
|
|
include $(TOP)$(ROOT)config/lib.cf
|
|
|
|
install::
|
|
$(INSTALL_RULE_HEADERS)
|
|
|