# Very simple makefile for Wren 1.00.

OBJS = wren.obj pattern.obj lfn.obj letters.obj
CFLAGS = -mc

wren.exe: $(OBJS)
	bcc -mc $(OBJS)
