2010-03-28 13:34 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)

* config/rules.mk
    ! Added hack to make it build hbpp after latest change.
      Again hbpp, I couldn't find out what was the real problem,
      so there may be a better fix.
This commit is contained in:
Viktor Szakats
2010-03-28 11:45:44 +00:00
parent 88750713d3
commit 4fab15a350
2 changed files with 18 additions and 0 deletions

View File

@@ -17,6 +17,12 @@
past entries belonging to author(s): Viktor Szakats.
*/
2010-03-28 13:34 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* config/rules.mk
! Added hack to make it build hbpp after latest change.
Again hbpp, I couldn't find out what was the real problem,
so there may be a better fix.
2010-03-28 12:14 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
- bin/postinst.bat
* bin/postinst.prg

View File

@@ -99,9 +99,21 @@ endif
%$(RES_EXT) : %.rc
$(RC_RULE)
_RES := no
ifneq ($(RES_EXT),)
ifneq ($(ALL_RC_OBJS),)
_RES := yes
endif
endif
# Rule to generate an executable file from an object file.
ifeq ($(_RES),yes)
%$(BIN_EXT) : %$(OBJ_EXT) %$(RES_EXT)
$(LD_RULE)
else
%$(BIN_EXT) : %$(OBJ_EXT)
$(LD_RULE)
endif
# Rule to generate a C file from a PRG file.
%.c : $(GRANDP)%.prg