# DOS utilities. Compiled with BC++ 3.1. I guess most C++
# compiler will do.
BCC=l:\bc\bccx -P -Il:\bc\include -c -ml
TLINK=l:\bc\tlink  $(TLIB)\c0l.obj
TLIB=l:\bc\lib
PROGS = rdev linux

all: $(PROGS)

rdev:
	$(BCC) rdev.c
	$(TLINK) rdev.obj,rdev,nul,$(TLIB)\cl

linux:
	$(BCC) linux.c
	$(TLINK) linux.obj,linux,nul,$(TLIB)\cl

clean:
	del *.exe *.obj

