Files
harbour-core/harbour/source/makefile.dos
1999-05-16 06:31:14 +00:00

21 lines
379 B
Plaintext

# $Id$
# Makefile for DOS DJGPP
#
.PHONY: compiler vm rtl
all: compiler vm rtl
compiler:
make --directory=./compiler -r -f makefile.dos
vm:
make --directory=./vm -f makefile.dos
rtl:
make --directory=./rtl -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