From 12cbb40cf412172a07783851e5036de6c8cf7d5c Mon Sep 17 00:00:00 2001 From: Bruno Cantero Date: Mon, 26 Jul 1999 16:23:42 +0000 Subject: [PATCH] ChangeLogTag:19990726-18:12 GMT+1 Bruno Cantero --- harbour/ChangeLog | 4 ++++ harbour/makefile.dos | 8 ++++++-- harbour/source/makefile.dos | 8 ++++++-- 3 files changed, 16 insertions(+), 4 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index e92c40b07a..3f6044c525 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,7 @@ +19990726-18:12 GMT+1 Bruno Cantero + * makefile.dos, source/makefile.dos and source/rdd/makefile.dos + Added RDD support + Mon Jul 26 11:42:11 1999 Gonzalo A. Diethelm * include/Makefile: diff --git a/harbour/makefile.dos b/harbour/makefile.dos index cfdc50ac2f..6001cb8350 100644 --- a/harbour/makefile.dos +++ b/harbour/makefile.dos @@ -1,9 +1,9 @@ # makefile for djgpp dos enviroment # tell emacs that this is a -*- makefile -*- -.phony: compiler vm rtl tests +.phony: compiler vm rtl tests rdd -all: compiler nat vm rtl tools +all: compiler nat vm rtl tools rdd compiler: make -r -w --directory=source/compiler -f makefile.dos @@ -20,6 +20,9 @@ nat: tools: make -w --directory=source/tools -f makefile.dos +rdd: + make -w --directory=source/rdd -f makefile.dos + # remarked out it created a make error and is now supercede by hbdos.bat # tests: # make -w --directory=tests/working -f makefile.dos @@ -30,4 +33,5 @@ clean: make -w --directory=source/rtl -f makefile.dos clean make -w --directory=source/rtl/natmsg -f makefile.dos clean make -w --directory=source/tools -f makefile.dos clean + make -w --directory=source/rdd -f makefile.dos clean # make -w --directory=tests -f makefile.dos clean diff --git a/harbour/source/makefile.dos b/harbour/source/makefile.dos index 80041efcb4..03bb1f0364 100644 --- a/harbour/source/makefile.dos +++ b/harbour/source/makefile.dos @@ -1,9 +1,9 @@ # $Id$ # Makefile for DOS DJGPP # -.PHONY: compiler vm rtl tools +.PHONY: compiler vm rtl tools rdd -all: compiler vm rtl tools +all: compiler vm rtl tools rdd compiler: make --directory=./compiler -r -f makefile.dos @@ -17,7 +17,11 @@ rtl: tools: make --directory=./tools -f makefile.dos +rdd: + make --directory=./rdd -f makefile.dos + clean: make --directory=./compiler -f makefile.dos clean make --directory=./vm -f makefile.dos clean make --directory=./rtl -f makefile.dos clean + make --directory=./rdd -f makefile.dos clean