11 lines
155 B
Makefile
11 lines
155 B
Makefile
|
include ..\makefile.in
|
||
|
|
||
|
TARGET = rectest.exe
|
||
|
FLAGS += -mwindows
|
||
|
LIBS += -lcomdlg32 -lcomctl32
|
||
|
|
||
|
all: $(TARGET)
|
||
|
|
||
|
clean:
|
||
|
$(RM) $(OUTDIR)\$(TARGET)
|