From 1e6c9a1d304f5ce1bc7a76d7e054edbd3ab744b5 Mon Sep 17 00:00:00 2001 From: Leslee Griffith Date: Fri, 28 May 1999 15:14:31 +0000 Subject: [PATCH] makefile for dos djgpp --- harbour/makefile.dos | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 harbour/makefile.dos diff --git a/harbour/makefile.dos b/harbour/makefile.dos new file mode 100644 index 0000000000..5ee0b6ee9b --- /dev/null +++ b/harbour/makefile.dos @@ -0,0 +1,24 @@ +# makefile for djgpp dos enviroment +# Tell emacs that this is a -*- makefile -*- + +.PHONY: COMPILER VM RTL TESTS + +all: COMPILER VM RTL TESTS + +COMPILER: + make -w --directory=SOURCE/COMPILER -f MAKEFILE.DOS + +VM: + make -w --directory=SOURCE/VM -f MAKEFILE.DOS + +RTL: + make -w --directory=SOURCE/RTL -f MAKEFILE.DOS + +TESTS: + make -w --directory=TESTS/WORKING -f MAKEFILE.DOS + +clean: + make -w --directory=SOURCE/COMPILER -f MAKEFILE.DOS clean + make -w --directory=SOURCE/VM -f MAKEFILE.DOS clean + make -w --directory=SOURCE/RTL -f MAKEFILE.DOS clean + make -w --directory=TESTS -f MAKEFILE.DOS clean