From c5ac234016ed0bfc7fab5805a2a3056d57edef2c Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Thu, 5 Jun 2008 16:33:37 +0000 Subject: [PATCH] 2008-06-05 18:30 UTC+0100 Viktor Szakats (harbour.01 syenar hu) * common.mak * harbour-ce-spec * harbour-w32-spec * harbour.spec * make_b32.mak * make_gcc.mak * make_vc.mak * make_vcce.bat * make_vcce.mak * make_xmingw.sh * make_xmingwce.sh + source/pp/hbpp.c - source/pp/hbppgen.c * source/pp/Makefile * hbppgen -> hbpp ; Please test. * harbour-w32-spec ! Added 'svn:keywords "Author Date Id Revision"' ; TOMERGE [RC1] --- harbour/ChangeLog | 22 ++++++++++++++++++++++ harbour/common.mak | 12 ++++++------ harbour/harbour-ce-spec | 4 ++-- harbour/harbour-w32-spec | 4 ++-- harbour/harbour.spec | 2 +- harbour/make_b32.mak | 20 ++++++++++---------- harbour/make_gcc.mak | 10 +++++----- harbour/make_vc.mak | 18 +++++++++--------- harbour/make_vcce.bat | 14 +++++++------- harbour/make_vcce.mak | 18 +++++++++--------- harbour/make_xmingw.sh | 2 +- harbour/make_xmingwce.sh | 2 +- harbour/source/pp/Makefile | 6 +++--- harbour/source/pp/{hbppgen.c => hbpp.c} | 0 14 files changed, 78 insertions(+), 56 deletions(-) rename harbour/source/pp/{hbppgen.c => hbpp.c} (100%) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index e2889c442e..e615bc4778 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,28 @@ 2008-12-31 13:59 UTC+0100 Foo Bar */ +2008-06-05 18:30 UTC+0100 Viktor Szakats (harbour.01 syenar hu) + * common.mak + * harbour-ce-spec + * harbour-w32-spec + * harbour.spec + * make_b32.mak + * make_gcc.mak + * make_vc.mak + * make_vcce.bat + * make_vcce.mak + * make_xmingw.sh + * make_xmingwce.sh + + source/pp/hbpp.c + - source/pp/hbppgen.c + * source/pp/Makefile + * hbppgen -> hbpp + ; Please test. + + * harbour-w32-spec + ! Added 'svn:keywords "Author Date Id Revision"' + ; TOMERGE [RC1] + 2008-06-05 14:58 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/harbour-ce-spec * harbour/harbour-w32-spec diff --git a/harbour/common.mak b/harbour/common.mak index 11c70d082b..67e1d3d241 100644 --- a/harbour/common.mak +++ b/harbour/common.mak @@ -248,7 +248,7 @@ GTXWC_LIB = $(LIB_DIR)\$(LIBPREF)gtxwc$(LIBEXT) HARBOUR_EXE = $(BIN_DIR)\harbour$(EXEEXT) # required (intermediate) utility # to generate pptable.c -HBPPGEN_EXE = $(BIN_DIR)\hbppgen$(EXEEXT) +HBPP_EXE = $(BIN_DIR)\hbpp$(EXEEXT) HBPPTEST_EXE = $(BIN_DIR)\hbpptest$(EXEEXT) HBRUN_EXE = $(BIN_DIR)\hbrun$(EXEEXT) HBDOT_EXE = $(BIN_DIR)\hbdot$(EXEEXT) @@ -1036,8 +1036,8 @@ HARBOUR_EXE_OBJS = \ #********************************************************** -HBPPGEN_EXE_OBJS = \ - $(OBJ_DIR)\hbppgen$(OBJEXT) \ +HBPP_EXE_OBJS = \ + $(OBJ_DIR)\hbpp$(OBJEXT) \ #********************************************************** @@ -1182,7 +1182,7 @@ DISABLED_SHARED_MODULES= \ HB_BUILD_TARGETS = \ $(COMMON_LIB) \ - $(HBPPGEN_EXE) \ + $(HBPP_EXE) \ $(PP_LIB) \ \ $(COMPILER_LIB) \ @@ -1231,8 +1231,8 @@ HB = $(HARBOUR_EXE) !endif # allows to do cross-compiling if neccesary. -!ifndef HBPPGEN -HBPPGEN = $(HBPPGEN_EXE) +!ifndef HBPP +HBPP = $(HBPP_EXE) !endif #********************************************************** diff --git a/harbour/harbour-ce-spec b/harbour/harbour-ce-spec index 3078d4a10e..bb72edce28 100644 --- a/harbour/harbour-ce-spec +++ b/harbour/harbour-ce-spec @@ -97,7 +97,7 @@ export HB_ARCHITECTURE=w32 export HB_COMPILER=cemgw mkdir -p source/pp/${HB_ARCHITECTURE}/${HB_COMPILER} -ln -s ../../linux/gcc/hbppgen source/pp/${HB_ARCHITECTURE}/${HB_COMPILER}/hbppgen.exe +ln -s ../../linux/gcc/hbpp source/pp/${HB_ARCHITECTURE}/${HB_COMPILER}/hbpp.exe mkdir -p source/main/${HB_ARCHITECTURE}/${HB_COMPILER} ln -s ../../linux/gcc/harbour source/main/${HB_ARCHITECTURE}/${HB_COMPILER}/harbour.exe @@ -172,7 +172,7 @@ make -r -i install ${CCPREFIX}strip --strip-debug $HB_LIB_INSTALL/* # remove unused files -rm -fR ${HB_BIN_INSTALL}/{harbour,hbppgen,hbdoc,hbdot,hbmake,hbrun,hbtest,hbverfix,hbpptest}.exe +rm -fR ${HB_BIN_INSTALL}/{harbour,hbpp,hbdoc,hbdot,hbmake,hbrun,hbtest,hbverfix,hbpptest}.exe rm -fR $HB_INC_INSTALL # Create a README file for people using this RPM. diff --git a/harbour/harbour-w32-spec b/harbour/harbour-w32-spec index 599fa989c5..08f0a57f35 100644 --- a/harbour/harbour-w32-spec +++ b/harbour/harbour-w32-spec @@ -97,7 +97,7 @@ export HB_ARCHITECTURE=w32 export HB_COMPILER=mingw32 mkdir -p source/pp/${HB_ARCHITECTURE}/${HB_COMPILER} -ln -s ../../linux/gcc/hbppgen source/pp/${HB_ARCHITECTURE}/${HB_COMPILER}/hbppgen.exe +ln -s ../../linux/gcc/hbpp source/pp/${HB_ARCHITECTURE}/${HB_COMPILER}/hbpp.exe mkdir -p source/main/${HB_ARCHITECTURE}/${HB_COMPILER} ln -s ../../linux/gcc/harbour source/main/${HB_ARCHITECTURE}/${HB_COMPILER}/harbour.exe @@ -172,7 +172,7 @@ make -r -i install ${CCPREFIX}strip --strip-debug $HB_LIB_INSTALL/* # remove unused files -rm -fR ${HB_BIN_INSTALL}/{harbour,hbppgen,hbdoc,hbdot,hbmake,hbrun,hbtest,hbverfix,hbpptest}.exe +rm -fR ${HB_BIN_INSTALL}/{harbour,hbpp,hbdoc,hbdot,hbmake,hbrun,hbtest,hbverfix,hbpptest}.exe rm -fR $HB_INC_INSTALL # Create a README file for people using this RPM. diff --git a/harbour/harbour.spec b/harbour/harbour.spec index 3bb74b9bd4..3d622fc482 100644 --- a/harbour/harbour.spec +++ b/harbour/harbour.spec @@ -492,7 +492,7 @@ rm -rf $RPM_BUILD_ROOT %verify(not md5 mtime) %config /etc/harbour.cfg %verify(not md5 mtime) %config /etc/harbour/hb-charmap.def %{_bindir}/harbour -%{_bindir}/hbppgen +%{_bindir}/hbpp %{_bindir}/hb-mkslib %{_bindir}/%{hb_pref}-build %{_bindir}/%{hb_pref}cc diff --git a/harbour/make_b32.mak b/harbour/make_b32.mak index 7ded8b2b1a..4dff5f9015 100644 --- a/harbour/make_b32.mak +++ b/harbour/make_b32.mak @@ -455,14 +455,14 @@ $(COMMON_LIB) $(PP_LIB) ! #********************************************************** -# HBPPGEN build rule +# HBPP build rule #********************************************************** -$(HBPPGEN_EXE) :: $(COMMON_LIB) -$(HBPPGEN_EXE) :: $(HBPPGEN_EXE_OBJS) - IF EXIST "$(HBPPGEN_EXE)" $(DEL) "$(HBPPGEN_EXE)" > NUL +$(HBPP_EXE) :: $(COMMON_LIB) +$(HBPP_EXE) :: $(HBPP_EXE_OBJS) + IF EXIST "$(HBPP_EXE)" $(DEL) "$(HBPP_EXE)" > NUL $(CC) @&&! $(CFLAGS) --e$(HBPPGEN_EXE) +-e$(HBPP_EXE) $(**: = ^ ) $(COMMON_LIB) @@ -588,18 +588,18 @@ $(DLL_OBJ_DIR)\mainstd$(OBJEXT) : $(VM_DIR)\mainstd.c #********************************************************** -# Generated by an intermediate utility hbppgen.exe +# Generated by an intermediate utility hbpp.exe # built at the initial phase of build process $(OBJ_DIR)\pptable.obj : $(OBJ_DIR)\pptable.c $(DLL_OBJ_DIR)\pptable.obj : $(DLL_OBJ_DIR)\pptable.c -$(OBJ_DIR)\pptable.c : include\hbstdgen.ch include\std.ch ChangeLog $(PP_DIR)\ppcore.c $(PP_DIR)\hbppgen.c +$(OBJ_DIR)\pptable.c : include\hbstdgen.ch include\std.ch ChangeLog $(PP_DIR)\ppcore.c $(PP_DIR)\hbpp.c IF EXIST "$(OBJ_DIR)\pptable.c" $(DEL) "$(OBJ_DIR)\pptable.c" > nul - $(HBPPGEN) include/hbstdgen.ch -o$(OBJ_DIR)/pptable.c -q -cChangeLog -vinclude/hbverbld.h + $(HBPP) include/hbstdgen.ch -o$(OBJ_DIR)/pptable.c -q -cChangeLog -vinclude/hbverbld.h -$(DLL_OBJ_DIR)\pptable.c : include\hbstdgen.ch include\std.ch ChangeLog $(PP_DIR)\ppcore.c $(PP_DIR)\hbppgen.c +$(DLL_OBJ_DIR)\pptable.c : include\hbstdgen.ch include\std.ch ChangeLog $(PP_DIR)\ppcore.c $(PP_DIR)\hbpp.c IF EXIST "$(DLL_OBJ_DIR)\pptable.c" $(DEL) "$(DLL_OBJ_DIR)\pptable.c" > nul - $(HBPPGEN) include/hbstdgen.ch -o$(DLL_OBJ_DIR)/pptable.c -q -cChangeLog -vinclude/hbverbld.h + $(HBPP) include/hbstdgen.ch -o$(DLL_OBJ_DIR)/pptable.c -q -cChangeLog -vinclude/hbverbld.h #********************************************************** diff --git a/harbour/make_gcc.mak b/harbour/make_gcc.mak index a832edd3e3..f461c98fe1 100644 --- a/harbour/make_gcc.mak +++ b/harbour/make_gcc.mak @@ -288,7 +288,7 @@ all : $(HB_DEST_DIRS) $(HB_BUILD_TARGETS) #********************************************************** # Helper targets #********************************************************** -BasicLibs : $(COMMON_LIB) $(HBPPGEN_EXE) $(PP_LIB) $(COMPILER_LIB) +BasicLibs : $(COMMON_LIB) $(HBPP_EXE) $(PP_LIB) $(COMPILER_LIB) BasicExes : BasicLibs $(HB) StdLibs : BasicExes $(STANDARD_STATIC_HBLIBS) #********************************************************** @@ -407,7 +407,7 @@ $(GTXWC_LIB) : $(GTXWC_LIB_OBJS) #********************************************************** # EXECUTABLE Targets BUILD rules #********************************************************** -$(HBPPGEN_EXE) : $(HBPPGEN_EXE_OBJS) $(COMMON_LIB) +$(HBPP_EXE) : $(HBPP_EXE_OBJS) $(COMMON_LIB) $(CC) $(CFLAGS) -o $@ $^ $(HB_OS_LIBS) #********************************************************** $(HARBOUR_EXE) : $(HARBOUR_EXE_OBJS) $(COMPILER_LIB) $(PP_LIB) $(COMMON_LIB) @@ -464,15 +464,15 @@ $(DLL_OBJ_DIR)/mainstd$(OBJEXT) : $(VM_DIR)/mainstd.c # EXTRA Object's DEPENDENCIES #********************************************************** -# Generated by an intermediate utility hbppgen.exe +# Generated by an intermediate utility hbpp.exe # built at the initial phase of build process $(OBJ_DIR)/pptable$(OBJEXT) : $(OBJ_DIR)/pptable.c $(DLL_OBJ_DIR)/pptable$(OBJEXT) : $(DLL_OBJ_DIR)/pptable.c -$(OBJ_DIR)/pptable.c : $(HBPPGEN) include/hbstdgen.ch include/std.ch ChangeLog $(PP_DIR)/ppcore.c $(PP_DIR)/hbppgen.c +$(OBJ_DIR)/pptable.c : $(HBPP) include/hbstdgen.ch include/std.ch ChangeLog $(PP_DIR)/ppcore.c $(PP_DIR)/hbpp.c $< include/hbstdgen.ch -o$@ -q -cChangeLog -vinclude/hbverbld.h -$(DLL_OBJ_DIR)/pptable.c : $(HBPPGEN) include/hbstdgen.ch include/std.ch ChangeLog $(PP_DIR)/ppcore.c $(PP_DIR)/hbppgen.c +$(DLL_OBJ_DIR)/pptable.c : $(HBPP) include/hbstdgen.ch include/std.ch ChangeLog $(PP_DIR)/ppcore.c $(PP_DIR)/hbpp.c $< include/hbstdgen.ch -o$@ -q -cChangeLog -vinclude/hbverbld.h #********************************************************** diff --git a/harbour/make_vc.mak b/harbour/make_vc.mak index 548e8f888e..229d8f56bb 100644 --- a/harbour/make_vc.mak +++ b/harbour/make_vc.mak @@ -793,13 +793,13 @@ $(COMPILER_LIB) $(PP_LIB) <<$(KEEPSTATE) #********************************************************** -# HBPPGEN build rule +# HBPP build rule #********************************************************** -$(HBPPGEN_EXE) : $(HBPPGEN_EXE_OBJS) - IF EXIST "$(HBPPGEN_EXE)" $(DEL) "$(HBPPGEN_EXE)" > nul +$(HBPP_EXE) : $(HBPP_EXE_OBJS) + IF EXIST "$(HBPP_EXE)" $(DEL) "$(HBPP_EXE)" > nul $(LINKER) @<< $(LDFLAGS) -/OUT:$(HBPPGEN_EXE) +/OUT:$(HBPP_EXE) $(**: = ^ ) $(COMMON_LIB) @@ -932,18 +932,18 @@ $(DLL_OBJ_DIR)\mainstd$(OBJEXT) : $(VM_DIR)\mainstd.c # EXTRA Object's DEPENDENCIES #********************************************************** -# Generated by an intermediate utility hbppgen.exe +# Generated by an intermediate utility hbpp.exe # built at the initial phase of build process $(OBJ_DIR)\pptable.obj : $(OBJ_DIR)\pptable.c $(DLL_OBJ_DIR)\pptable.obj : $(DLL_OBJ_DIR)\pptable.c -$(OBJ_DIR)\pptable.c : include\hbstdgen.ch include\std.ch ChangeLog $(PP_DIR)\ppcore.c $(PP_DIR)\hbppgen.c +$(OBJ_DIR)\pptable.c : include\hbstdgen.ch include\std.ch ChangeLog $(PP_DIR)\ppcore.c $(PP_DIR)\hbpp.c IF EXIST "$(OBJ_DIR)\pptable.c" $(DEL) "$(OBJ_DIR)\pptable.c" > nul - $(HBPPGEN) include/hbstdgen.ch -o$(OBJ_DIR)/pptable.c -q -cChangeLog -vinclude/hbverbld.h + $(HBPP) include/hbstdgen.ch -o$(OBJ_DIR)/pptable.c -q -cChangeLog -vinclude/hbverbld.h -$(DLL_OBJ_DIR)\pptable.c : include\hbstdgen.ch include\std.ch ChangeLog $(PP_DIR)\ppcore.c $(PP_DIR)\hbppgen.c +$(DLL_OBJ_DIR)\pptable.c : include\hbstdgen.ch include\std.ch ChangeLog $(PP_DIR)\ppcore.c $(PP_DIR)\hbpp.c IF EXIST "$(DLL_OBJ_DIR)\pptable.c" $(DEL) "$(DLL_OBJ_DIR)\pptable.c" > nul - $(HBPPGEN) include/hbstdgen.ch -o$(DLL_OBJ_DIR)/pptable.c -q -cChangeLog -vinclude/hbverbld.h + $(HBPP) include/hbstdgen.ch -o$(DLL_OBJ_DIR)/pptable.c -q -cChangeLog -vinclude/hbverbld.h #********************************************************** diff --git a/harbour/make_vcce.bat b/harbour/make_vcce.bat index 1d9e0b1e28..1be1272e76 100644 --- a/harbour/make_vcce.bat +++ b/harbour/make_vcce.bat @@ -48,9 +48,9 @@ if "%1" == "INSTALL" goto INSTALL rem --------------------------------------------------------------- -rem Checking if HB and HBPPGEN are set +rem Checking if HB and HBPP are set -if not "%HB%" == "" if exist %HB% goto CHECK_HBPPGEN +if not "%HB%" == "" if exist %HB% goto CHECK_HBPP echo. echo ******************************************* echo You must set HB environment variable to a @@ -61,13 +61,13 @@ if not "%HB%" == "" if exist %HB% goto CHECK_HBPPGEN echo. goto EXIT -:CHECK_HBPPGEN -if not "%HBPPGEN%" == "" if exist %HBPPGEN% goto BUILD +:CHECK_HBPP +if not "%HBPP%" == "" if exist %HBPP% goto BUILD echo. echo ********************************************** - echo You must set HBPPGEN environment variable to a - echo working copy of hbppgen.exe helper executable - echo. Example : set HBPPGEN=C:\Harbour\hbppgen.exe + echo You must set HBPP environment variable to a + echo working copy of hbpp.exe helper executable + echo. Example : set HBPP=C:\Harbour\hbpp.exe echo ********************************************** echo. goto EXIT diff --git a/harbour/make_vcce.mak b/harbour/make_vcce.mak index ffe56ba4f8..cc5ce67388 100644 --- a/harbour/make_vcce.mak +++ b/harbour/make_vcce.mak @@ -800,13 +800,13 @@ $(PP_LIB) coredll.lib corelibc.lib <<$(KEEPSTATE) #********************************************************** -# HBPPGEN build rule +# HBPP build rule #********************************************************** -$(HBPPGEN_EXE) : $(HBPPGEN_EXE_OBJS) - IF EXIST "$(HBPPGEN_EXE)" $(DEL) "$(HBPPGEN_EXE)" > nul +$(HBPP_EXE) : $(HBPP_EXE_OBJS) + IF EXIST "$(HBPP_EXE)" $(DEL) "$(HBPP_EXE)" > nul $(LINKER) @<< $(LDFLAGS) -/OUT:$(HBPPGEN_EXE) +/OUT:$(HBPP_EXE) $(**: = ^ ) $(COMMON_LIB) @@ -938,18 +938,18 @@ $(DLL_OBJ_DIR)\mainstd.obj : $(VM_DIR)\mainstd.c # EXTRA Object's DEPENDENCIES #********************************************************** -# Generated by an intermediate utility hbppgen.exe +# Generated by an intermediate utility hbpp.exe # built at the initial phase of build process $(OBJ_DIR)\pptable.obj : $(OBJ_DIR)\pptable.c $(DLL_OBJ_DIR)\pptable.obj : $(DLL_OBJ_DIR)\pptable.c -$(OBJ_DIR)\pptable.c : include\hbstdgen.ch include\std.ch ChangeLog $(PP_DIR)\ppcore.c $(PP_DIR)\hbppgen.c +$(OBJ_DIR)\pptable.c : include\hbstdgen.ch include\std.ch ChangeLog $(PP_DIR)\ppcore.c $(PP_DIR)\hbpp.c IF EXIST "$(OBJ_DIR)\pptable.c" $(DEL) "$(OBJ_DIR)\pptable.c" > nul - $(HBPPGEN) include/hbstdgen.ch -o$(OBJ_DIR)/pptable.c -q -cChangeLog -vinclude/hbverbld.h + $(HBPP) include/hbstdgen.ch -o$(OBJ_DIR)/pptable.c -q -cChangeLog -vinclude/hbverbld.h -$(DLL_OBJ_DIR)\pptable.c : include\hbstdgen.ch include\std.ch ChangeLog $(PP_DIR)\ppcore.c $(PP_DIR)\hbppgen.c +$(DLL_OBJ_DIR)\pptable.c : include\hbstdgen.ch include\std.ch ChangeLog $(PP_DIR)\ppcore.c $(PP_DIR)\hbpp.c IF EXIST "$(DLL_OBJ_DIR)\pptable.c" $(DEL) "$(DLL_OBJ_DIR)\pptable.c" > nul - $(HBPPGEN) include/hbstdgen.ch -o$(DLL_OBJ_DIR)/pptable.c -q -cChangeLog -vinclude/hbverbld.h + $(HBPP) include/hbstdgen.ch -o$(DLL_OBJ_DIR)/pptable.c -q -cChangeLog -vinclude/hbverbld.h #********************************************************** diff --git a/harbour/make_xmingw.sh b/harbour/make_xmingw.sh index 51b6292d46..9c13478902 100755 --- a/harbour/make_xmingw.sh +++ b/harbour/make_xmingw.sh @@ -110,7 +110,7 @@ else exit 1 fi -ln -s "$DIR/source/pp/$UNAMEL/gcc/hbppgen" ${HB_BIN_COMPILE}/hbppgen.exe +ln -s "$DIR/source/pp/$UNAMEL/gcc/hbpp" ${HB_BIN_COMPILE}/hbpp.exe export HB_PPGEN_PATH=${HB_BIN_COMPILE} case "$1" in diff --git a/harbour/make_xmingwce.sh b/harbour/make_xmingwce.sh index de97bf3688..31830ca8d1 100755 --- a/harbour/make_xmingwce.sh +++ b/harbour/make_xmingwce.sh @@ -70,7 +70,7 @@ else exit 1 fi -ln -s "$DIR/source/pp/$HB_HOST_ARCH/$HB_HOST_CC/hbppgen" ${HB_BIN_COMPILE}/hbppgen.exe +ln -s "$DIR/source/pp/$HB_HOST_ARCH/$HB_HOST_CC/hbpp" ${HB_BIN_COMPILE}/hbpp.exe export HB_PPGEN_PATH=${HB_BIN_COMPILE} case "$1" in diff --git a/harbour/source/pp/Makefile b/harbour/source/pp/Makefile index ec4abc3bd3..fe06bc6152 100644 --- a/harbour/source/pp/Makefile +++ b/harbour/source/pp/Makefile @@ -28,12 +28,12 @@ ifneq ($(HB_PP_RULES),) pptable.c : $(HB_PP_RULES) $(CP) $(subst /,$(DIRSEP),$<) $@ else -pptable.c : hbppgen$(EXE_EXT) - $(HB_PPGEN_PATH)/hbppgen$(EXE_EXT) $(TOP)$(ROOT)include/hbstdgen.ch -opptable.c -q -c -v$(TOP)$(ROOT)include/hbverbld.h +pptable.c : hbpp$(EXE_EXT) + $(HB_PPGEN_PATH)/hbpp$(EXE_EXT) $(TOP)$(ROOT)include/hbstdgen.ch -opptable.c -q -c -v$(TOP)$(ROOT)include/hbverbld.h endif ifneq ($(HB_BIN_INSTALL),) -INSTALL_OBJS = $(ARCH_DIR)/hbppgen$(EXE_EXT) +INSTALL_OBJS = $(ARCH_DIR)/hbpp$(EXE_EXT) INSTALL_DIR = $(HB_BIN_INSTALL) HB_INSTALL_DEF=yes include $(TOP)$(ROOT)config/install.cf diff --git a/harbour/source/pp/hbppgen.c b/harbour/source/pp/hbpp.c similarity index 100% rename from harbour/source/pp/hbppgen.c rename to harbour/source/pp/hbpp.c