Files
harbour-core/harbour/utils/hbrun/Makefile
Viktor Szakats 17c6e80808 2010-03-13 17:20 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* utils/hbmk2/hbmk2.prg
    + hbmainstd/hbmainwin lib is now added for mingw family
      to lib list also for static executables. It fixes the GPF
      at startup with Equation Solution mingw64 build. I hope
      it doesn't create any harm for other builds, it remains
      to be tested.
    % Disabled -fomit-frame-pointer for mingw64.

  * utils/hbformat/Makefile
  * utils/hbmk2/Makefile
  * utils/hbi18n/Makefile
  * utils/hbtest/Makefile
  * utils/hbrun/Makefile
  * config/win/mingw.mk
    % "HB_MAIN" logic eliminated from local make files and moved
      to mingw.mk only.
2010-03-13 16:27:08 +00:00

28 lines
466 B
Makefile

#
# $Id$
#
ROOT := ../../
include $(TOP)$(ROOT)config/global.mk
PRG_SOURCES := \
hbrun.prg \
PRG_MAIN := hbrun.prg
LIBS = hbcplr hbpp hbcommon $(HB_LIBS_ST_RDD)
ifeq ($(_DEFAULT_INC_DIR),)
ifneq ($(HB_INC_INSTALL),)
ifneq ($(HB_INST_PKGPREF),)
_DEFAULT_INC_DIR := $(HB_INC_INSTALL)
endif
endif
endif
ifneq ($(_DEFAULT_INC_DIR),)
HB_PRGFLAGS += -D_DEFAULT_INC_DIR=[$(_DEFAULT_INC_DIR)]
endif
include $(TOP)$(ROOT)config/bin.mk