Files
harbour-core/harbour/utils/hbrun/Makefile
Viktor Szakats 14f87ff7ac 2010-06-27 14:53 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* utils/hbrun/Makefile
  * utils/hbrun/hbrun.hbp
    + Enabled MT mode for hbrun. Not required, but it's a good way to
      start off with experimenting. It could be useful for scripts, too.
2010-06-27 12:54:04 +00:00

31 lines
495 B
Makefile

#
# $Id$
#
ROOT := ../../
include $(TOP)$(ROOT)config/global.mk
PRG_SOURCES := \
hbrun.prg \
RC_SOURCES := \
hbrun.rc
PRG_MAIN := hbrun.prg
LIBS = hbcplr hbpp hbcommon $(HB_LIBS_MT_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