2007-11-10 18:03 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)

* Makefile
   - samples
   + contrib/examples
   * contrib/Makefile
   * contrib/examples/Makefile
   * contrib/examples/guestbk/inifiles.prg
   * contrib/examples/guestbk/testcgi.prg
   * contrib/examples/guestbk/bld_b32.bat
   * contrib/examples/guestbk/Makefile
   * contrib/examples/pe/pe.prg
   * contrib/examples/pe/Makefile
   * contrib/examples/misc/Makefile
   * contrib/examples/hscript/bld_b32.bat
   * contrib/examples/hscript/Makefile
   * contrib/examples/Makefile
     * Moved /samples to /contrib/examples
This commit is contained in:
Viktor Szakats
2007-11-10 17:04:20 +00:00
parent 6d733d7695
commit 6e47dd35f5
34 changed files with 46 additions and 27 deletions

View File

@@ -8,6 +8,24 @@
2002-12-01 13:30 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
2007-11-10 18:03 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* Makefile
- samples
+ contrib/examples
* contrib/Makefile
* contrib/examples/Makefile
* contrib/examples/guestbk/inifiles.prg
* contrib/examples/guestbk/testcgi.prg
* contrib/examples/guestbk/bld_b32.bat
* contrib/examples/guestbk/Makefile
* contrib/examples/pe/pe.prg
* contrib/examples/pe/Makefile
* contrib/examples/misc/Makefile
* contrib/examples/hscript/bld_b32.bat
* contrib/examples/hscript/Makefile
* contrib/examples/Makefile
* Moved /samples to /contrib/examples
2007-11-10 17:35 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* source/vm/hvm.c
! Fixed unused var warning when HB_NO_DEBUG was defined

View File

@@ -23,7 +23,6 @@ DIRS=\
source \
$(HB_UTIL_DIR) \
contrib \
# samples \
endif

View File

@@ -14,6 +14,7 @@ DIRS=\
samples \
xhb \
$(HB_CONTRIBLIBS)
# examples \
ifneq ($(HB_ARCHITECTURE),dos)

View File

@@ -2,7 +2,7 @@
# $Id$
#
ROOT = ../
ROOT = ../../
DIRS=\
guestbk \

View File

@@ -2,7 +2,7 @@
# $Id$
#
ROOT = ../../
ROOT = ../../../
PRG_SOURCES=\
guestbk.prg \

View File

@@ -3,11 +3,11 @@ rem
rem $Id$
rem
..\..\bin\harbour /n guestbk /i..\..\include\
..\..\bin\harbour /n inifiles /i..\..\include\
..\..\bin\harbour /n testcgi /i..\..\include\
..\..\..\bin\harbour /n guestbk /i..\..\..\include\
..\..\..\bin\harbour /n inifiles /i..\..\..\include\
..\..\..\bin\harbour /n testcgi /i..\..\..\include\
echo -O2 -I..\..\include -L..\..\lib > build.tmp
echo -O2 -I..\..\..\include -L..\..\..\lib > build.tmp
echo -eguestbk.exe >> build.tmp
echo guestbk.c inifiles.c testcgi.c >> build.tmp
echo debug.lib >> build.tmp

View File

@@ -1,6 +1,7 @@
//
// $Id$
//
/*
* $Id$
*/
#define CRLF (Chr(13) + Chr(10))
function TIniFile()

View File

@@ -1,6 +1,6 @@
//
// $Id$
//
/*
* $Id$
*/
/*
*

View File

@@ -2,7 +2,7 @@
# $Id$
#
ROOT = ../../
ROOT = ../../../
PRG_SOURCES=\
hscript.prg \

View File

@@ -0,0 +1,10 @@
@echo off
rem
rem $Id$
rem
rem NOTE: This sample program need nf.lib from contrib/libnf
..\..\..\bin\harbour hscript /n /i..\..\..\include
bcc32 -O2 -I..\..\..\include -L..\..\..\lib -ehscript.exe hscript.c debug.lib vm.lib rtl.lib gtwin.lib lang.lib rdd.lib macro.lib pp.lib dbfntx.lib dbfcdx.lib dbffpt.lib codepage.lib hbsix.lib common.lib hbpcre.lib hsx.lib nf.lib
del hscript.c

View File

@@ -2,7 +2,7 @@
# $Id$
#
ROOT = ../../
ROOT = ../../../
LIBS=\
debug \

View File

@@ -2,7 +2,7 @@
# $Id$
#
ROOT = ../../
ROOT = ../../../
PRG_SOURCES=\
editorhi.prg \

View File

@@ -12,7 +12,7 @@ PROCEDURE Main( cFile )
IF cFile == NIL
cFile := "license.txt"
IF !File( cFile )
cFile := "../../license.txt"
cFile := "../../../license.txt"
ENDIF
lMode := EDIT_VIEW
ENDIF

View File

@@ -1,10 +0,0 @@
@echo off
rem
rem $Id$
rem
rem NOTE: This sample program need nf.lib from contrib/libnf
..\..\bin\harbour hscript /n /i..\..\include
bcc32 -O2 -I..\..\include -L..\..\lib -ehscript.exe hscript.c debug.lib vm.lib rtl.lib gtwin.lib lang.lib rdd.lib macro.lib pp.lib dbfntx.lib dbfcdx.lib dbffpt.lib codepage.lib hbsix.lib common.lib hbpcre.lib hsx.lib nf.lib
del hscript.c