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