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