7 lines
143 B
Makefile
7 lines
143 B
Makefile
|
|
default: Decoder.exe
|
||
|
|
clean:
|
||
|
|
rm -f Decoder.exe
|
||
|
|
|
||
|
|
Decoder.exe: Decoder.cs
|
||
|
|
gmcs Decoder.cs -r:../../libsecondlife-cs/bin/Debug/libsecondlife.dll
|