mirror of
https://git.femboyfinancial.jp/james/lipsync.git
synced 2024-11-21 09:50:24 -08:00
11 lines
312 B
Makefile
11 lines
312 B
Makefile
RM=rm
|
|
CP=cp
|
|
|
|
Background.dll: Background.cs entry_config.cs entry_config.Designer.cs IPlugin.dll
|
|
gmcs -target:library -out:Background.dll \
|
|
-r:System.Windows.Forms,System.Drawing,IPlugin.dll \
|
|
Background.cs entry_config.cs entry_config.Designer.cs
|
|
|
|
clean:
|
|
$(RM) Background.dll IPlugin.dll
|