+ harbour/doc/howtobld.txt
+ added hb* scripts description
* harbour/Makefile
* harbour/source/Makefile
+ harbour/harbour-ce-spec
* harbour/bin/pack_src.sh
+ harbour/make_rpmce.sh
+ added script to build RPMs with cross build of Harbour for PocketPC
make_rpmce.sh should create harbour-ce-1.1.1-0.i386.rpm which
can be installed with other harbour RPMs
It contains Harbour libraries compiled for WinCE/PocketPC and
set of hbce* scripts which should be used instead of standard hb*
ones to create PocketPC binaries. It means that you can create
standard Linux binaries and PocketPC binaries in the same session
without setting/changing any additional environment varibales, f.e:
hbmk -n -w -es2 test.prg
will create linux binaries and:
hbcemk -n -w -es2 test.prg
will create binaries for WinCE/PocketPC
40 lines
331 B
Makefile
40 lines
331 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT = ../
|
|
|
|
ifeq ($(HB_HOST_BUILD),yes)
|
|
|
|
DIRS=\
|
|
common \
|
|
pp \
|
|
compiler \
|
|
main \
|
|
|
|
else
|
|
|
|
ifeq ($(HB_HOST_BUILD),lib)
|
|
HB_COMP_DIR=
|
|
else
|
|
HB_COMP_DIR=main
|
|
endif
|
|
|
|
DIRS=\
|
|
common \
|
|
pp \
|
|
compiler \
|
|
$(HB_COMP_DIR) \
|
|
rtl \
|
|
vm \
|
|
macro \
|
|
codepage \
|
|
lang \
|
|
rdd \
|
|
hbpcre \
|
|
debug \
|
|
|
|
endif
|
|
|
|
include $(ROOT)config/dir.cf
|