Files
harbour-core/harbour/extras/template
Viktor Szakats 50b4490f77 2012-12-12 01:12 UTC+0100 Viktor Szakats (harbour syenar.net)
* utils/hbmk2/hbmk2.prg
    + use implibs (if available) as source of information
      for updating .hbx files in -hbdyn mode. See in-code
      comment for more.

  * utils/hbmk2/pkg_dynl.hbm
    + enabled to rebuild .hbx files even in -hbdyn mode
      (after above hbmk2 fix/improvement)

  * extras/template/hbtpl.hbc
  * extras/template/hbtpl.hbp
    * minor tidying
2012-12-12 00:15:16 +00:00
..

/*
 * $Id$
 */

Harbour library project template
================================

Build static lib:
   $ hbmk2 hbtpl.hbp

Build dynamic lib:
   $ hbmk2 -hbdyn hbtpl.hbp

Build and run sample and test code using:
   $ cd tests
   $ hbmk2 sample
   $ sample
   $ hbmk2 test hbtest.hbc
   $ test

Run sample and test code using:
   $ hbrun tests/sample.prg
   $ hbrun tests/test.prg

Use lib from command prompt ("dot prompt"):
   $ cd tests
   $ hbrun

   . ? HBTPL_MYCONSTANT
   . ? hbtpl_MyPublicFunction()

[vszakats]