mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 06:35:34 +00:00
9b0fec6fb3
* sample/Makefile.in : Modified it to make it so "make clean" will clean the "sample/rsvg" directory too. And made it so a "make distclean" will do a distclean to the "sample/rsvg" too. * sample/rsvg/Makefile.in : Added the "distclean" rule to it. svn path=/trunk/gtk-sharp/; revision=12545
14 lines
339 B
Makefile
14 lines
339 B
Makefile
all:
|
|
@ENABLE_RSVG_TRUE@ mcs svghelloworld.cs \
|
|
@ENABLE_RSVG_TRUE@ -r ../../gnome/gnome-sharp.dll \
|
|
@ENABLE_RSVG_TRUE@ -r ../../gtk/gtk-sharp.dll \
|
|
@ENABLE_RSVG_TRUE@ -r ../../gdk/gdk-sharp.dll \
|
|
@ENABLE_RSVG_TRUE@ -r ../../rsvg/rsvg-sharp.dll \
|
|
|
|
|
|
clean:
|
|
rm -f *.exe
|
|
|
|
distclean: clean
|
|
@ENABLE_RSVG_TRUE@ rm -f Makefile
|