mirror of
https://git.femboyfinancial.jp/james/lipsync.git
synced 2025-01-31 01:59:02 -08:00
11 lines
205 B
Makefile
11 lines
205 B
Makefile
RM=rm
|
|
CP=cp
|
|
|
|
VFlip.dll: VFlip.cs IPlugin.dll
|
|
gmcs -target:library -out:VFlip.dll \
|
|
-r:System.Drawing,System.Windows.Forms,IPlugin.dll \
|
|
VFlip.cs
|
|
|
|
clean:
|
|
$(RM) VFlip.dll IPlugin.dll
|