ChangeLogTag:19990726-18:12 GMT+1 Bruno Cantero <bruno@issnet.net>

This commit is contained in:
Bruno Cantero
1999-07-26 16:23:42 +00:00
parent 2953c37f84
commit 12cbb40cf4
3 changed files with 16 additions and 4 deletions

View File

@@ -1,3 +1,7 @@
19990726-18:12 GMT+1 Bruno Cantero <bruno@issnet.net>
* makefile.dos, source/makefile.dos and source/rdd/makefile.dos
Added RDD support
Mon Jul 26 11:42:11 1999 Gonzalo A. Diethelm <Gonzalo.Diethelm@jda.cl>
* include/Makefile:

View File

@@ -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

View File

@@ -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