10 lines
144 B
Makefile
10 lines
144 B
Makefile
include ..\makefile.in
|
|
|
|
TARGET = modtest.exe
|
|
FLAGS += -mwindows
|
|
LIBS += -lcomdlg32
|
|
|
|
all: $(TARGET)
|
|
|
|
clean:
|
|
$(RM) $(OUTDIR)\$(TARGET)
|