CC=bcc
CFLAGS=-1 -mt

SRC=cls.c
OBJ=$(SRC:.c=.obj)


all: cls.exe

cls.exe: $(OBJ)
	$(CC) $(CFLAGS) $(OBJ)



clean:
	$(RM) *.obj
	$(RM) *.exe
