From 7a8980eaa6ffc84050928c63e14eaf3ab69db200 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sun, 2 Apr 2000 14:17:28 +0000 Subject: [PATCH] 20000402-16:17 GMT+1 Victor Szakats --- harbour/ChangeLog | 7 + harbour/include/Makefile | 118 ++++++------ harbour/samples/Makefile | 2 +- harbour/samples/guestbk/Makefile | 20 +- harbour/samples/hscript/Makefile | 16 +- harbour/samples/misc/Makefile | 20 +- harbour/samples/pe/Makefile | 18 +- harbour/source/Makefile | 2 +- harbour/source/common/Makefile | 8 +- harbour/source/compiler/Makefile | 22 +-- harbour/source/debug/Makefile | 10 +- harbour/source/pp/Makefile | 8 +- harbour/source/rdd/Makefile | 18 +- harbour/source/rtl/Makefile | 262 ++++++++++++------------- harbour/source/rtl/gt_tpl/Makefile | 2 +- harbour/source/rtl/gtcrs/Makefile | 2 +- harbour/source/rtl/gtdos/Makefile | 2 +- harbour/source/rtl/gtos2/Makefile | 2 +- harbour/source/rtl/gtpca/Makefile | 2 +- harbour/source/rtl/gtsln/Makefile | 2 +- harbour/source/rtl/gtstd/Makefile | 2 +- harbour/source/rtl/gtwin/Makefile | 2 +- harbour/source/tools/Makefile | 62 +++--- harbour/source/vm/Makefile | 42 ++-- harbour/tests/Makefile | 298 ++++++++++++++--------------- harbour/utils/Makefile | 8 +- harbour/utils/hbdoc/Makefile | 50 ++--- harbour/utils/hbextern/Makefile | 18 +- harbour/utils/hbrun/Makefile | 20 +- harbour/utils/hbtest/Makefile | 34 ++-- 30 files changed, 543 insertions(+), 536 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index ced1b0862c..fd3aed817b 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,10 @@ +20000402-16:17 GMT+1 Victor Szakats + + * */Makefile + ! 8 spaces in rules converted to tabs. + Just wondering why is this needed at all ? + It's not an easy one, but please try to take care of this rule. + 20000402-15:59 GMT+1 Victor Szakats - source/macro/macro.c diff --git a/harbour/include/Makefile b/harbour/include/Makefile index 24068bb5bb..ae8857b844 100644 --- a/harbour/include/Makefile +++ b/harbour/include/Makefile @@ -5,69 +5,69 @@ ROOT = ../ C_HEADERS=\ - clipdefs.h \ - extend.h \ - hbapierr.h \ - hbapiext.h \ - hbapifs.h \ - hbapigt.h \ - hbapiitm.h \ - hbapilng.h \ - hbapirdd.h \ - hbcomp.h \ - hbdate.h \ - hbdefs.h \ - hberrors.h \ - hbexprop.h \ - hbinit.h \ - hbmacro.h \ - hbpcode.h \ - hbpp.h \ - hbset.h \ - hbsetup.h \ - hbtrace.h \ - hbver.h \ - hbvm.h \ - hbvmpub.h \ + clipdefs.h \ + extend.h \ + hbapierr.h \ + hbapiext.h \ + hbapifs.h \ + hbapigt.h \ + hbapiitm.h \ + hbapilng.h \ + hbapirdd.h \ + hbcomp.h \ + hbdate.h \ + hbdefs.h \ + hberrors.h \ + hbexprop.h \ + hbinit.h \ + hbmacro.h \ + hbpcode.h \ + hbpp.h \ + hbset.h \ + hbsetup.h \ + hbtrace.h \ + hbver.h \ + hbvm.h \ + hbvmpub.h \ PRG_HEADERS=\ - achoice.ch \ - assert.ch \ - box.ch \ - color.ch \ - common.ch \ - dbedit.ch \ - dbstruct.ch \ - directry.ch \ - error.ch \ - fileio.ch \ - getexit.ch \ - harbour.ch \ - hboo.ch \ - hbclass.ch \ - hbextern.ch \ - hbmemory.ch \ - hbmemvar.ch \ - hbsetup.ch \ - inkey.ch \ - memoedit.ch \ - rddsys.ch \ - reserved.ch \ - set.ch \ - setcurs.ch \ - simpleio.ch \ - std.ch \ + achoice.ch \ + assert.ch \ + box.ch \ + color.ch \ + common.ch \ + dbedit.ch \ + dbstruct.ch \ + directry.ch \ + error.ch \ + fileio.ch \ + getexit.ch \ + harbour.ch \ + hboo.ch \ + hbclass.ch \ + hbextern.ch \ + hbmemory.ch \ + hbmemvar.ch \ + hbsetup.ch \ + inkey.ch \ + memoedit.ch \ + rddsys.ch \ + reserved.ch \ + set.ch \ + setcurs.ch \ + simpleio.ch \ + std.ch \ API_HEADERS=\ - error.api \ - extend.api \ - filesys.api \ - fm.api \ - gt.api \ - hbundoc.api \ - item.api \ - rdd.api \ - vm.api \ + error.api \ + extend.api \ + filesys.api \ + fm.api \ + gt.api \ + hbundoc.api \ + item.api \ + rdd.api \ + vm.api \ include $(TOP)$(ROOT)config/header.cf diff --git a/harbour/samples/Makefile b/harbour/samples/Makefile index 93c2a33aec..f6efac9132 100644 --- a/harbour/samples/Makefile +++ b/harbour/samples/Makefile @@ -8,6 +8,6 @@ DIRS=\ guestbk \ hscript \ misc \ - pe \ + pe \ include $(ROOT)config/dir.cf diff --git a/harbour/samples/guestbk/Makefile b/harbour/samples/guestbk/Makefile index 44740ebb43..52ee4869fd 100644 --- a/harbour/samples/guestbk/Makefile +++ b/harbour/samples/guestbk/Makefile @@ -6,20 +6,20 @@ ROOT = ../../ PRG_SOURCES=\ guestbk.prg \ - inifiles.prg \ - testcgi.prg \ + inifiles.prg \ + testcgi.prg \ PRG_MAIN=guestbk.prg LIBS=\ - debug \ - vm \ - rtl \ - rdd \ - rtl \ - vm \ + debug \ + vm \ + rtl \ + rdd \ + rtl \ + vm \ macro \ - pp \ - common \ + pp \ + common \ include $(TOP)$(ROOT)config/bin.cf diff --git a/harbour/samples/hscript/Makefile b/harbour/samples/hscript/Makefile index a4b217eb07..8697cd9132 100644 --- a/harbour/samples/hscript/Makefile +++ b/harbour/samples/hscript/Makefile @@ -10,14 +10,14 @@ PRG_SOURCES=\ PRG_MAIN=hscript.prg LIBS=\ - debug \ - vm \ - rtl \ - rdd \ - rtl \ - vm \ + debug \ + vm \ + rtl \ + rdd \ + rtl \ + vm \ macro \ - pp \ - common \ + pp \ + common \ include $(TOP)$(ROOT)config/bin.cf diff --git a/harbour/samples/misc/Makefile b/harbour/samples/misc/Makefile index c193f549a7..e26b687dac 100644 --- a/harbour/samples/misc/Makefile +++ b/harbour/samples/misc/Makefile @@ -5,23 +5,23 @@ ROOT = ../../ LIBS=\ - debug \ - vm \ - rtl \ - rdd \ - rtl \ - vm \ + debug \ + vm \ + rtl \ + rdd \ + rtl \ + vm \ macro \ - pp \ - common \ + pp \ + common \ ifeq ($(PM),) PM := $(pm) endif ifeq ($(PM),) # PM not defined = build all files PRG_SOURCES=\ - guess.prg \ - mankala.prg \ + guess.prg \ + mankala.prg \ PRG_HEADERS=\ diff --git a/harbour/samples/pe/Makefile b/harbour/samples/pe/Makefile index 15a4d17568..00b0b54ccf 100644 --- a/harbour/samples/pe/Makefile +++ b/harbour/samples/pe/Makefile @@ -5,7 +5,7 @@ ROOT = ../../ PRG_SOURCES=\ - editorhi.prg \ + editorhi.prg \ C_SOURCES=\ editorlo.c \ @@ -13,14 +13,14 @@ C_SOURCES=\ PRG_MAIN=pe.prg LIBS=\ - debug \ - vm \ - rtl \ - rdd \ - rtl \ - vm \ + debug \ + vm \ + rtl \ + rdd \ + rtl \ + vm \ macro \ - pp \ - common \ + pp \ + common \ include $(TOP)$(ROOT)config/bin.cf diff --git a/harbour/source/Makefile b/harbour/source/Makefile index 29ca7f3396..6eb006e157 100644 --- a/harbour/source/Makefile +++ b/harbour/source/Makefile @@ -12,7 +12,7 @@ DIRS=\ vm \ rdd \ macro \ - debug \ + debug \ tools \ include $(ROOT)config/dir.cf diff --git a/harbour/source/common/Makefile b/harbour/source/common/Makefile index a7facb0847..8c54f12af6 100644 --- a/harbour/source/common/Makefile +++ b/harbour/source/common/Makefile @@ -5,10 +5,10 @@ ROOT = ../../ C_SOURCES=\ - hbfsapi.c \ - hbstr.c \ - hbtrace.c \ - hbver.c \ + hbfsapi.c \ + hbstr.c \ + hbtrace.c \ + hbver.c \ reserved.c \ expropt1.c \ expropt2.c \ diff --git a/harbour/source/compiler/Makefile b/harbour/source/compiler/Makefile index 8b31e8468c..87f6d303cf 100644 --- a/harbour/source/compiler/Makefile +++ b/harbour/source/compiler/Makefile @@ -22,17 +22,17 @@ LEX_HEADERS=\ hbdefs.h C_SOURCES=\ - cmdcheck.c \ - genc.c \ - genhrb.c \ - genjava.c \ - genobj32.c \ - genpas.c \ - genrc.c \ - hbfunchk.c \ - hbgenerr.c \ - hbpcode.c \ - hbusage.c \ + cmdcheck.c \ + genc.c \ + genhrb.c \ + genjava.c \ + genobj32.c \ + genpas.c \ + genrc.c \ + hbfunchk.c \ + hbgenerr.c \ + hbpcode.c \ + hbusage.c \ expropta.c \ exproptb.c \ exproptc.c \ diff --git a/harbour/source/debug/Makefile b/harbour/source/debug/Makefile index 6b6aa2b4f9..cdf6bc5a5c 100644 --- a/harbour/source/debug/Makefile +++ b/harbour/source/debug/Makefile @@ -5,11 +5,11 @@ ROOT = ../../ PRG_SOURCES=\ - dbgmenu.prg \ - dbgtmenu.prg \ - dbgtwin.prg \ - debugger.prg \ - tbrwtext.prg \ + dbgmenu.prg \ + dbgtmenu.prg \ + dbgtwin.prg \ + debugger.prg \ + tbrwtext.prg \ LIBNAME=debug diff --git a/harbour/source/pp/Makefile b/harbour/source/pp/Makefile index e5cb0dcb33..5ab6d5be31 100644 --- a/harbour/source/pp/Makefile +++ b/harbour/source/pp/Makefile @@ -5,10 +5,10 @@ ROOT = ../../ C_SOURCES=\ - ppcore.c \ - ppcomp.c \ - pplib.c \ - pptable.c \ + ppcore.c \ + ppcomp.c \ + pplib.c \ + pptable.c \ LIBNAME=pp diff --git a/harbour/source/rdd/Makefile b/harbour/source/rdd/Makefile index e4fda7aadb..a515ceb041 100644 --- a/harbour/source/rdd/Makefile +++ b/harbour/source/rdd/Makefile @@ -6,17 +6,17 @@ ROOT = ../../ C_SOURCES=\ dbcmd.c \ - dbf1.c \ - dbnubs.c \ - sdf1.c \ - delim1.c \ + dbf1.c \ + dbnubs.c \ + sdf1.c \ + delim1.c \ PRG_SOURCES=\ - dbf0.prg \ - dbstrux.prg \ - sdf0.prg \ - delim0.prg \ - rddord.prg \ + dbf0.prg \ + dbstrux.prg \ + sdf0.prg \ + delim0.prg \ + rddord.prg \ rddsys.prg \ LIBNAME=rdd diff --git a/harbour/source/rtl/Makefile b/harbour/source/rtl/Makefile index 7668999536..5905ed68a4 100644 --- a/harbour/source/rtl/Makefile +++ b/harbour/source/rtl/Makefile @@ -5,139 +5,139 @@ ROOT = ../../ C_SOURCES=\ - abs.c \ - accept.c \ - ampm.c \ - at.c \ - binnum.c \ - binnumx.c \ - box.c \ - chrasc.c \ - colorind.c \ - console.c \ - copyfile.c \ - datec.c \ - dates.c \ - dateshb.c \ - datesx.c \ - defpath.c \ - descend.c \ - dir.c \ - dirdrive.c \ - diskspac.c \ - do.c \ - empty.c \ - errorapi.c \ - eval.c \ - filesys.c \ - fkmax.c \ - fnsplit.c \ - fssize.c \ - fstemp.c \ - gete.c \ - gt.c \ - gtapi.c \ - gx.c \ - hardcr.c \ - inkey.c \ - is.c \ - isprint.c \ - langapi.c \ - left.c \ - len.c \ - lennum.c \ - math.c \ - maxrow.c \ - memofile.c \ - memoline.c \ - minmax.c \ - mlcount.c \ - mlpos.c \ - mod.c \ - mouseapi.c \ - mousex.c \ - mtran.c \ - natmsg.c \ - net.c \ - oemansi.c \ - oldbox.c \ - oldclear.c \ - pad.c \ - philes.c \ - philes53.c \ - philesx.c \ - rat.c \ - replic.c \ - right.c \ - round.c \ - run.c \ - samples.c \ - saverest.c \ - scroll.c \ - seconds.c \ - set.c \ - setcolor.c \ - setcurs.c \ - setpos.c \ - shadow.c \ - soundex.c \ - space.c \ - str.c \ - strcase.c \ - strings.c \ - strmatch.c \ - strtran.c \ - strzero.c \ - stuff.c \ - substr.c \ - tone.c \ - trace.c \ - transfrm.c \ - trim.c \ - type.c \ - val.c \ - valtostr.c \ - valtype.c \ - version.c \ - word.c \ - xhelp.c \ - \ - msgxxx.c \ + abs.c \ + accept.c \ + ampm.c \ + at.c \ + binnum.c \ + binnumx.c \ + box.c \ + chrasc.c \ + colorind.c \ + console.c \ + copyfile.c \ + datec.c \ + dates.c \ + dateshb.c \ + datesx.c \ + defpath.c \ + descend.c \ + dir.c \ + dirdrive.c \ + diskspac.c \ + do.c \ + empty.c \ + errorapi.c \ + eval.c \ + filesys.c \ + fkmax.c \ + fnsplit.c \ + fssize.c \ + fstemp.c \ + gete.c \ + gt.c \ + gtapi.c \ + gx.c \ + hardcr.c \ + inkey.c \ + is.c \ + isprint.c \ + langapi.c \ + left.c \ + len.c \ + lennum.c \ + math.c \ + maxrow.c \ + memofile.c \ + memoline.c \ + minmax.c \ + mlcount.c \ + mlpos.c \ + mod.c \ + mouseapi.c \ + mousex.c \ + mtran.c \ + natmsg.c \ + net.c \ + oemansi.c \ + oldbox.c \ + oldclear.c \ + pad.c \ + philes.c \ + philes53.c \ + philesx.c \ + rat.c \ + replic.c \ + right.c \ + round.c \ + run.c \ + samples.c \ + saverest.c \ + scroll.c \ + seconds.c \ + set.c \ + setcolor.c \ + setcurs.c \ + setpos.c \ + shadow.c \ + soundex.c \ + space.c \ + str.c \ + strcase.c \ + strings.c \ + strmatch.c \ + strtran.c \ + strzero.c \ + stuff.c \ + substr.c \ + tone.c \ + trace.c \ + transfrm.c \ + trim.c \ + type.c \ + val.c \ + valtostr.c \ + valtype.c \ + version.c \ + word.c \ + xhelp.c \ + \ + msgxxx.c \ PRG_SOURCES=\ - achoice.prg \ - adir.prg \ - alert.prg \ - asort.prg \ - browdb.prg \ - browdbx.prg \ - browse.prg \ - dbedit.prg \ - devoutp.prg \ - dircmd.prg \ - dummy.prg \ - errorsys.prg \ - fieldbl.prg \ - input.prg \ - memvarbl.prg \ - menuto.prg \ - objfunc.prg \ - readkey.prg \ - setfunc.prg \ - setkey.prg \ - setta.prg \ - tclass.prg \ - tbcolumn.prg \ - tbrowse.prg \ - terror.prg \ - text.prg \ - tget.prg \ - tgetlist.prg \ - tlabel.prg \ - treport.prg \ - typefile.prg \ - wait.prg \ - xsavescr.prg \ + achoice.prg \ + adir.prg \ + alert.prg \ + asort.prg \ + browdb.prg \ + browdbx.prg \ + browse.prg \ + dbedit.prg \ + devoutp.prg \ + dircmd.prg \ + dummy.prg \ + errorsys.prg \ + fieldbl.prg \ + input.prg \ + memvarbl.prg \ + menuto.prg \ + objfunc.prg \ + readkey.prg \ + setfunc.prg \ + setkey.prg \ + setta.prg \ + tclass.prg \ + tbcolumn.prg \ + tbrowse.prg \ + terror.prg \ + text.prg \ + tget.prg \ + tgetlist.prg \ + tlabel.prg \ + treport.prg \ + typefile.prg \ + wait.prg \ + xsavescr.prg \ LIBNAME=rtl diff --git a/harbour/source/rtl/gt_tpl/Makefile b/harbour/source/rtl/gt_tpl/Makefile index 5a4b91f2b1..a4810b985b 100644 --- a/harbour/source/rtl/gt_tpl/Makefile +++ b/harbour/source/rtl/gt_tpl/Makefile @@ -6,7 +6,7 @@ ROOT = ../../../ C_SOURCES=\ gt_tpl.c \ - mousetpl.c \ + mousetpl.c \ LIBNAME=gt_tpl diff --git a/harbour/source/rtl/gtcrs/Makefile b/harbour/source/rtl/gtcrs/Makefile index 3882464485..489a83c5e1 100644 --- a/harbour/source/rtl/gtcrs/Makefile +++ b/harbour/source/rtl/gtcrs/Makefile @@ -6,7 +6,7 @@ ROOT = ../../../ C_SOURCES=\ gtcrs.c \ - mousecrs.c \ + mousecrs.c \ LIBNAME=gtcrs diff --git a/harbour/source/rtl/gtdos/Makefile b/harbour/source/rtl/gtdos/Makefile index dc5f17c331..98a456359c 100644 --- a/harbour/source/rtl/gtdos/Makefile +++ b/harbour/source/rtl/gtdos/Makefile @@ -6,7 +6,7 @@ ROOT = ../../../ C_SOURCES=\ gtdos.c \ - mousedos.c \ + mousedos.c \ LIBNAME=gtdos diff --git a/harbour/source/rtl/gtos2/Makefile b/harbour/source/rtl/gtos2/Makefile index cf3400d0e8..dea6bdb8f4 100644 --- a/harbour/source/rtl/gtos2/Makefile +++ b/harbour/source/rtl/gtos2/Makefile @@ -6,7 +6,7 @@ ROOT = ../../../ C_SOURCES=\ gtos2.c \ - mouseos2.c \ + mouseos2.c \ LIBNAME=gtos2 diff --git a/harbour/source/rtl/gtpca/Makefile b/harbour/source/rtl/gtpca/Makefile index 65032ff374..540bc1a3ee 100644 --- a/harbour/source/rtl/gtpca/Makefile +++ b/harbour/source/rtl/gtpca/Makefile @@ -6,7 +6,7 @@ ROOT = ../../../ C_SOURCES=\ gtpca.c \ - mousepca.c \ + mousepca.c \ LIBNAME=gtpca diff --git a/harbour/source/rtl/gtsln/Makefile b/harbour/source/rtl/gtsln/Makefile index ded2698e34..c28f4f65da 100644 --- a/harbour/source/rtl/gtsln/Makefile +++ b/harbour/source/rtl/gtsln/Makefile @@ -6,7 +6,7 @@ ROOT = ../../../ C_SOURCES=\ gtsln.c \ - mousesln.c \ + mousesln.c \ LIBNAME=gtsln diff --git a/harbour/source/rtl/gtstd/Makefile b/harbour/source/rtl/gtstd/Makefile index 88b797fa89..11da582cad 100644 --- a/harbour/source/rtl/gtstd/Makefile +++ b/harbour/source/rtl/gtstd/Makefile @@ -6,7 +6,7 @@ ROOT = ../../../ C_SOURCES=\ gtstd.c \ - mousestd.c \ + mousestd.c \ LIBNAME=gtstd diff --git a/harbour/source/rtl/gtwin/Makefile b/harbour/source/rtl/gtwin/Makefile index a693d34bb8..19669977a5 100644 --- a/harbour/source/rtl/gtwin/Makefile +++ b/harbour/source/rtl/gtwin/Makefile @@ -6,7 +6,7 @@ ROOT = ../../../ C_SOURCES=\ gtwin.c \ - mousewin.c \ + mousewin.c \ LIBNAME=gtwin diff --git a/harbour/source/tools/Makefile b/harbour/source/tools/Makefile index 73a9e338b0..1f54ef4375 100644 --- a/harbour/source/tools/Makefile +++ b/harbour/source/tools/Makefile @@ -5,39 +5,39 @@ ROOT = ../../ C_SOURCES=\ - asciisum.c \ - ascpos.c \ - atdiff.c \ - chareven.c \ - charmix.c \ - charodd.c \ - chrcount.c \ - chrfirst.c \ - chrtotal.c \ - ctchksum.c \ - ctchrmix.c \ - ctcrypt.c \ - dates2.c \ - dbftools.c \ - hb_f.c \ - mathx.c \ - strasint.c \ - strcount.c \ - strcspn.c \ - strdiff.c \ - strexpan.c \ - strfmt.c \ - stringsx.c \ - strleft.c \ - strpbrk.c \ - strright.c \ + asciisum.c \ + ascpos.c \ + atdiff.c \ + chareven.c \ + charmix.c \ + charodd.c \ + chrcount.c \ + chrfirst.c \ + chrtotal.c \ + ctchksum.c \ + ctchrmix.c \ + ctcrypt.c \ + dates2.c \ + dbftools.c \ + hb_f.c \ + mathx.c \ + strasint.c \ + strcount.c \ + strcspn.c \ + strdiff.c \ + strexpan.c \ + strfmt.c \ + stringsx.c \ + strleft.c \ + strpbrk.c \ + strright.c \ PRG_SOURCES=\ - fileread.prg \ - nconvert.prg \ - numtxthu.prg \ - numtxten.prg \ - stringp.prg \ + fileread.prg \ + nconvert.prg \ + numtxthu.prg \ + numtxten.prg \ + stringp.prg \ LIBNAME=tools diff --git a/harbour/source/vm/Makefile b/harbour/source/vm/Makefile index f7fc72fd57..69bf5adfcb 100644 --- a/harbour/source/vm/Makefile +++ b/harbour/source/vm/Makefile @@ -5,31 +5,31 @@ ROOT = ../../ C_SOURCES=\ - arrays.c \ - arrayshb.c \ - break.c \ - classes.c \ - cmdarg.c \ - debug.c \ + arrays.c \ + arrayshb.c \ + break.c \ + classes.c \ + cmdarg.c \ + debug.c \ dynsym.c \ - codebloc.c \ - extend.c \ - fm.c \ - hvm.c \ - initexit.c \ + codebloc.c \ + extend.c \ + fm.c \ + hvm.c \ + initexit.c \ initsymb.c \ - itemapi.c \ - macro.c \ - main.c \ - memvars.c \ - memvclip.c \ - pcount.c \ - proc.c \ - pvalue.c \ - runner.c \ + itemapi.c \ + macro.c \ + main.c \ + memvars.c \ + memvclip.c \ + pcount.c \ + proc.c \ + pvalue.c \ + runner.c \ PRG_SOURCES=\ - harbinit.prg \ + harbinit.prg \ LIBNAME=vm diff --git a/harbour/tests/Makefile b/harbour/tests/Makefile index 42a7db2576..a8d889b286 100644 --- a/harbour/tests/Makefile +++ b/harbour/tests/Makefile @@ -9,16 +9,16 @@ endif ROOT = ../ LIBS=\ - tools \ - debug \ - vm \ - rtl \ - rdd \ - rtl \ - vm \ + tools \ + debug \ + vm \ + rtl \ + rdd \ + rtl \ + vm \ macro \ - pp \ - common \ + pp \ + common \ ifeq ($(PM),) PM := $(pm) @@ -27,156 +27,156 @@ endif ifeq ($(PM),) # PM not defined = build all files PRG_SOURCES=\ - ac_test.prg \ - adirtest.prg \ - ainstest.prg \ - and_or.prg \ - array16.prg \ - arrayidx.prg \ - arrays.prg \ - arreval.prg \ - arrindex.prg \ - atest.prg \ - begin.prg \ - box.prg \ - boxtest.prg \ - byref.prg \ - calling.prg \ - cdow.prg \ - clasinit.prg \ - classch.prg \ - classes.prg \ - clsdata.prg \ - cmphello.prg \ - codebl.prg \ - codebloc.prg \ - comments.prg \ - curdirt.prg \ - cursrtst.prg \ - dates.prg \ - dates2.prg \ - dates3.prg \ - dates4.prg \ - dbevalts.prg \ - debugtst.prg \ - devtest.prg \ - dirtest.prg \ - disptest.prg \ - docase.prg \ - dosshell.prg \ - dynobj.prg \ - dynsym.prg \ - exittest.prg \ - fib.prg \ - fornext.prg \ - fortest.prg \ - fsplit.prg \ - funcarr.prg \ - hello.prg \ - ifelse.prg \ - ifinline.prg \ - inherit.prg \ - inifiles.prg \ - initexit.prg \ - inkeytst.prg \ - inline.prg \ - iotest.prg \ - iotest2.prg \ - longdev.prg \ - longstr.prg \ - longstr2.prg \ - mathtest.prg \ - memfile.prg \ - memory.prg \ - memvar.prg \ - menutest.prg \ - multiarg.prg \ - nums.prg \ - objarr.prg \ - objasign.prg \ - objects.prg \ - os.prg \ - output.prg \ - overload.prg \ - parexpr.prg \ - passref.prg \ - procline.prg \ - procname.prg \ - readfile.prg \ - readhrb.prg \ - recursiv.prg \ - returns.prg \ - round.prg \ - rtfclass.prg \ - say.prg \ - scroll.prg \ - seconds.prg \ - set_num.prg \ - set_test.prg \ - sound.prg \ - statinit.prg \ - statfun.prg \ - statics.prg \ - strdelim.prg \ - stripem.prg \ - t1.prg \ - test.prg \ - test_all.prg \ - testbrdb.prg \ - testbrw.prg \ - testcgi.prg \ - testdbf.prg \ - testerro.prg \ - testfor.prg \ - testgt.prg \ - testhbf.prg \ - testhtml.prg \ - testinc.prg \ - testmem.prg \ - teststr.prg \ - testtok.prg \ - testpre.prg \ - testread.prg \ - testrdd.prg \ - testvars.prg \ - testwarn.prg \ - tstalias.prg \ - tstcolor.prg \ - tstdspac.prg \ - version.prg \ - while.prg \ + ac_test.prg \ + adirtest.prg \ + ainstest.prg \ + and_or.prg \ + array16.prg \ + arrayidx.prg \ + arrays.prg \ + arreval.prg \ + arrindex.prg \ + atest.prg \ + begin.prg \ + box.prg \ + boxtest.prg \ + byref.prg \ + calling.prg \ + cdow.prg \ + clasinit.prg \ + classch.prg \ + classes.prg \ + clsdata.prg \ + cmphello.prg \ + codebl.prg \ + codebloc.prg \ + comments.prg \ + curdirt.prg \ + cursrtst.prg \ + dates.prg \ + dates2.prg \ + dates3.prg \ + dates4.prg \ + dbevalts.prg \ + debugtst.prg \ + devtest.prg \ + dirtest.prg \ + disptest.prg \ + docase.prg \ + dosshell.prg \ + dynobj.prg \ + dynsym.prg \ + exittest.prg \ + fib.prg \ + fornext.prg \ + fortest.prg \ + fsplit.prg \ + funcarr.prg \ + hello.prg \ + ifelse.prg \ + ifinline.prg \ + inherit.prg \ + inifiles.prg \ + initexit.prg \ + inkeytst.prg \ + inline.prg \ + iotest.prg \ + iotest2.prg \ + longdev.prg \ + longstr.prg \ + longstr2.prg \ + mathtest.prg \ + memfile.prg \ + memory.prg \ + memvar.prg \ + menutest.prg \ + multiarg.prg \ + nums.prg \ + objarr.prg \ + objasign.prg \ + objects.prg \ + os.prg \ + output.prg \ + overload.prg \ + parexpr.prg \ + passref.prg \ + procline.prg \ + procname.prg \ + readfile.prg \ + readhrb.prg \ + recursiv.prg \ + returns.prg \ + round.prg \ + rtfclass.prg \ + say.prg \ + scroll.prg \ + seconds.prg \ + set_num.prg \ + set_test.prg \ + sound.prg \ + statinit.prg \ + statfun.prg \ + statics.prg \ + strdelim.prg \ + stripem.prg \ + t1.prg \ + test.prg \ + test_all.prg \ + testbrdb.prg \ + testbrw.prg \ + testcgi.prg \ + testdbf.prg \ + testerro.prg \ + testfor.prg \ + testgt.prg \ + testhbf.prg \ + testhtml.prg \ + testinc.prg \ + testmem.prg \ + teststr.prg \ + testtok.prg \ + testpre.prg \ + testread.prg \ + testrdd.prg \ + testvars.prg \ + testwarn.prg \ + tstalias.prg \ + tstcolor.prg \ + tstdspac.prg \ + version.prg \ + while.prg \ PRG_HEADERS=\ - db_brows.ch \ - cgi.ch \ - keywords.ch \ - test.ch \ + db_brows.ch \ + cgi.ch \ + keywords.ch \ + test.ch \ BAD_PRG_SOURCES=\ - alias.prg \ - clasname.prg \ - dupvars.prg \ - extend1.prg \ - keywords.prg \ - linecont.prg \ - lnlenli1.prg \ - lnlenli2.prg \ - setkeys.prg \ - spawn.prg \ - spawn2.prg \ - statics1.prg \ - statics2.prg \ - test10.prg \ - testid.prg \ - tstprag.prg \ - vec1.prg \ + alias.prg \ + clasname.prg \ + dupvars.prg \ + extend1.prg \ + keywords.prg \ + linecont.prg \ + lnlenli1.prg \ + lnlenli2.prg \ + setkeys.prg \ + spawn.prg \ + spawn2.prg \ + statics1.prg \ + statics2.prg \ + test10.prg \ + testid.prg \ + tstprag.prg \ + vec1.prg \ C_SOURCES=\ C_HEADERS=\ BAD_C_SOURCES=\ - extend2.c \ + extend2.c \ include $(TOP)$(ROOT)config/test.cf diff --git a/harbour/utils/Makefile b/harbour/utils/Makefile index c5157a4bdf..e808c30dae 100644 --- a/harbour/utils/Makefile +++ b/harbour/utils/Makefile @@ -5,9 +5,9 @@ ROOT = ../ DIRS=\ - hbrun \ - hbdoc \ - hbtest \ -# hbextern \ + hbrun \ + hbdoc \ + hbtest \ +# hbextern \ include $(ROOT)config/dir.cf diff --git a/harbour/utils/hbdoc/Makefile b/harbour/utils/hbdoc/Makefile index c8575375e4..2f7c23b194 100644 --- a/harbour/utils/hbdoc/Makefile +++ b/harbour/utils/hbdoc/Makefile @@ -9,35 +9,35 @@ endif ROOT = ../../ PRG_SOURCES=\ - hbdoc.prg \ - genos2.prg \ - gentrf.prg \ - genng.prg \ - genhtm.prg \ - genrtf.prg \ - genhpc.prg \ - genasc.prg \ - html.prg \ - ng.prg \ - os2.prg \ - rtf.prg \ - troff.prg \ - fclass1.prg \ - ffile1.prg \ - ft_funcs.prg \ + hbdoc.prg \ + genos2.prg \ + gentrf.prg \ + genng.prg \ + genhtm.prg \ + genrtf.prg \ + genhpc.prg \ + genasc.prg \ + html.prg \ + ng.prg \ + os2.prg \ + rtf.prg \ + troff.prg \ + fclass1.prg \ + ffile1.prg \ + ft_funcs.prg \ PRG_MAIN=hbdoc.prg LIBS=\ - debug \ - vm \ - rtl \ - rdd \ - rtl \ - vm \ + debug \ + vm \ + rtl \ + rdd \ + rtl \ + vm \ macro \ - pp \ - common \ + pp \ + common \ include $(TOP)$(ROOT)config/bin.cf - + diff --git a/harbour/utils/hbextern/Makefile b/harbour/utils/hbextern/Makefile index 9eb9e4e59b..ba735005aa 100644 --- a/harbour/utils/hbextern/Makefile +++ b/harbour/utils/hbextern/Makefile @@ -9,19 +9,19 @@ endif ROOT = ../../ PRG_SOURCES=\ - hbextern.prg \ + hbextern.prg \ PRG_MAIN=hbextern.prg LIBS=\ - debug \ - vm \ - rtl \ - rdd \ - rtl \ - vm \ + debug \ + vm \ + rtl \ + rdd \ + rtl \ + vm \ macro \ - pp \ - common \ + pp \ + common \ include $(TOP)$(ROOT)config/bin.cf diff --git a/harbour/utils/hbrun/Makefile b/harbour/utils/hbrun/Makefile index 9bd71474d0..0beab25628 100644 --- a/harbour/utils/hbrun/Makefile +++ b/harbour/utils/hbrun/Makefile @@ -10,20 +10,20 @@ ROOT = ../../ PRG_SOURCES=\ hbrun.prg \ - exttools.prg \ + exttools.prg \ PRG_MAIN=hbrun.prg LIBS=\ - tools \ - debug \ - vm \ - rtl \ - rdd \ - rtl \ - vm \ + tools \ + debug \ + vm \ + rtl \ + rdd \ + rtl \ + vm \ macro \ - pp \ - common \ + pp \ + common \ include $(TOP)$(ROOT)config/bin.cf diff --git a/harbour/utils/hbtest/Makefile b/harbour/utils/hbtest/Makefile index ddd353ca84..3f378f3ea0 100644 --- a/harbour/utils/hbtest/Makefile +++ b/harbour/utils/hbtest/Makefile @@ -9,27 +9,27 @@ endif ROOT = ../../ PRG_SOURCES=\ - hbtest.prg \ - rt_array.prg \ - rt_date.prg \ - rt_file.prg \ - rt_hvm.prg \ - rt_math.prg \ - rt_misc.prg \ - rt_str.prg \ - rt_trans.prg \ + hbtest.prg \ + rt_array.prg \ + rt_date.prg \ + rt_file.prg \ + rt_hvm.prg \ + rt_math.prg \ + rt_misc.prg \ + rt_str.prg \ + rt_trans.prg \ PRG_MAIN=hbtest.prg LIBS=\ - debug \ - vm \ - rtl \ - rdd \ - rtl \ - vm \ + debug \ + vm \ + rtl \ + rdd \ + rtl \ + vm \ macro \ - pp \ - common \ + pp \ + common \ include $(TOP)$(ROOT)config/bin.cf