include ..\makefile.in

TARGET = rectest.exe
FLAGS += -mwindows
LIBS = -lcomctl32 -lcomdlg32

all: $(TARGET)

clean:
	$(RM) $(OUTDIR)\$(TARGET)
