mirror of
https://git.femboyfinancial.jp/james/lipsync.git
synced 2024-11-22 10:42:03 -08:00
11 lines
255 B
Makefile
11 lines
255 B
Makefile
CP=cp
|
|
RM=rm
|
|
OPT=-r:System,System.Drawing,System.Windows.Forms
|
|
IPLUGIN_SRC=IPlugin.cs ISO639.cs InputBox.cs InputBox.designer.cs
|
|
|
|
IPlugin.dll: $(IPLUGIN_SRC)
|
|
gmcs -target:library -out:IPlugin.dll $(IPLUGIN_SRC) $(OPT)
|
|
|
|
clean:
|
|
$(RM) IPlugin.dll
|