Files
harbour-core/harbour/utils/hbformat/Makefile
Viktor Szakats aa0c2b749a 2010-06-27 16:20 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* package/winuni/mpkg_win_uni_extra_copy.bat
  * package/winuni/mpkg_win_uni.bat
  * package/winuni/mpkg_win_uni.nsi
  * package/winuni/mpkg_win_uni.bat
  * utils/hbformat/Makefile
  * utils/hbi18n/Makefile
  * utils/hbtest/Makefile
  * config/postinst.prg
    * Forcing shared build for hbformat, hbi18n and hbtest.
      Simply to save binary sizes on all platforms.
    * Disabled extra shared (-dll) version for hbformat, hbi18 and hbtest
      because this is now the default mode for these.
    * Disabled extra shared (-dll) version for hbmk2.
    * Changed distro to always include hbrun x64 shared build, too.
    ; To sum it up: hbformat, hbi18n, hbtest will now have shared exes
      generated and distributed, for hbmk2 only static one, and for hbrun
      both. This simplifies build and install, and fully syncs x64 tools
      distributed, with 32-bit ones.
2010-06-27 14:25:21 +00:00

22 lines
264 B
Makefile

#
# $Id$
#
ROOT := ../../
PRG_SOURCES := \
hbformat.prg \
C_SOURCES := \
hbformac.c \
PRG_MAIN := hbformat.prg
LIBS = $(HB_LIBS_ST_NORDD)
ifneq ($(filter $(HB_PLATFORM),win wce os2),)
HB_BUILD_SHARED := yes
endif
include $(TOP)$(ROOT)config/bin.mk