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
|