* doc/Makefile
! Removed license.txt.
* INSTALL
+ Added Windows/Windows CE build examples.
Cleaned mingw64 and mingwce cross-builds.
* mpkg_win.bat
* Using make_gnu.sh instead of make_gnu_xmingwce.sh
for mingwce target for uniformity.
* utils/hbmk2/hbmk2.prg
! Fixed silly typo causing RTE if compiler autodetection
fails to detect any tier-one compilers (or none).
+ Added automatic postfixing external Harbour executable
name if hbmk2 executable name is also prefixed. Currently
-x64 and -ia64 are recognized. Useful to call harbour-x64.exe
/ harbour-ia64.exe when hbmk2-x64.exe / hbmk2-ia64.exe is used.
* make_gnu_xmingwce.sh
* config/rules.cf
* config/win/mingwce.cf
* config/win/poccce.cf
* config/win/msvcce.cf
* config/wce/global.cf
* Moved -D__PLATFORM__WINCE to .cf files. This also fixes
missing __PLATFORM__WINCE for poccce and msvcce targets.
99 lines
2.3 KiB
CFEngine3
99 lines
2.3 KiB
CFEngine3
#
|
|
# $Id$
|
|
#
|
|
|
|
# How to run yacc.
|
|
YACC = bison
|
|
YACC_FLAGS := -d $(YACC_FLAGS)
|
|
|
|
# How to run lex.
|
|
LEX = flex
|
|
LEX_FLAGS := -i -8 $(LEX_FLAGS)
|
|
|
|
ifeq ($(HB_BUILD_DEBUG),yes)
|
|
HB_CDBG = -DHB_TR_LEVEL_DEBUG
|
|
else
|
|
HB_PDBG = -l
|
|
endif
|
|
|
|
#
|
|
# How to run Harbour.
|
|
#
|
|
HB := $(notdir $(HB_BIN_COMPILE))
|
|
ifneq ($(HB),)
|
|
# there is no slash at the end
|
|
HB := $(HB_BIN_COMPILE)/
|
|
endif
|
|
HB := $(HB)harbour$(EXE_EXT)
|
|
|
|
ifeq ($(HB_GCMODE),)
|
|
HB_GCMODE=3
|
|
endif
|
|
HB_FLAGS := -i$(HB_INC_COMPILE) -q0 -w3 -es2 -kmo $(HB_PDBG)
|
|
HB_RULE = $(HB) $? -n1 $(HB_FLAGS) -gc$(HB_GCMODE) $(HB_FLAGSEXTRA) $(HB_USER_PRGFLAGS)
|
|
|
|
# The rule to link an executable.
|
|
ifeq ($(LD_RULE),)
|
|
# Use default rule if architecture/compiler specific rule is not defined
|
|
LD_RULE = $(LD) $(CFLAGS) $(LD_OUT)$@ $(^F) $(LDFLAGS) $(HB_USER_LDFLAGS) $(LINKLIBS)
|
|
endif
|
|
|
|
# The rule to compile a C source file.
|
|
ifeq ($(CC_RULE),)
|
|
# Use default rule if architecture/compiler specific rule is not defined
|
|
CC_RULE = $(CC) $(CPPFLAGS) $(CFLAGS) $(HB_CDBG) $(HB_USER_CFLAGS) $(HB_CDYNLIB) $(CC_IN) $< $(CC_OUT)$(<F:.c=$(OBJ_EXT))
|
|
endif
|
|
|
|
# The rule to compile a C++ source file.
|
|
ifeq ($(CPP_RULE),)
|
|
# Use default rule if architecture/compiler specific rule is not defined
|
|
CPP_RULE = $(CC) $(CPPFLAGS) $(CFLAGS) $(HB_CDBG) $(HB_USER_CFLAGS) $(HB_CDYNLIB) $(CC_IN) $< $(CC_OUT)$(<F:.cpp=$(OBJ_EXT))
|
|
endif
|
|
|
|
|
|
# Eliminate these rules.
|
|
|
|
%.c : %.y
|
|
|
|
%.c : %.l
|
|
|
|
# Location of source C files
|
|
# Some DOS compilers doesn't like '/' in filenames - however the MAKE system
|
|
# requires '/' in filenames - this trick allows to solve this conflict
|
|
SOURCE_DIR := $($(HB_ARCHITECTURE)_$(HB_COMPILER)_GRANDP)
|
|
ifeq ($(SOURCE_DIR),)
|
|
SOURCE_DIR = $(GRANDP)
|
|
endif
|
|
|
|
# Rule to generate an object file from a C source file in the parent.
|
|
%$(OBJ_EXT) : $(SOURCE_DIR)%.c
|
|
$(CC_RULE)
|
|
|
|
# Rule to generate an object file from a C source file.
|
|
%$(OBJ_EXT) : %.c
|
|
$(CC_RULE)
|
|
|
|
#rules for CPP files
|
|
%$(OBJ_EXT) : $(SOURCE_DIR)%.cpp
|
|
$(CPP_RULE)
|
|
|
|
%$(OBJ_EXT) : %.cpp
|
|
$(CPP_RULE)
|
|
|
|
|
|
# Rule to generate an executable file from an object file.
|
|
%$(EXE_EXT) : %$(OBJ_EXT)
|
|
$(LD_RULE)
|
|
|
|
# Rule to generate a C file from a PRG file.
|
|
%.c : $(GRANDP)%.prg
|
|
$(HB_RULE)
|
|
|
|
ifeq ($(SHLVL),) # COMMAND.COM
|
|
# Do nothing. the $(HB_ARCHITECTURE)/global.cf will handle clean up.
|
|
else
|
|
# Generic rule to clean up.
|
|
clean::
|
|
-$(RM) *.bak *.obj core *.core *~ *.o *.ppo *.err
|
|
endif
|