SparkleShare/Makefile

18 lines
495 B
Makefile
Raw Normal View History

SparklePony.exe : src/SparklePony.cs
gmcs -pkg:gtk-sharp-2.0 -pkg:notify-sharp -pkg:dbus-sharp src/SparklePony.cs
2010-04-27 15:10:42 +00:00
2010-04-27 16:57:17 +00:00
install:
2010-04-27 20:02:29 +00:00
mkdir -p /usr/share/local/sparklepony
2010-04-27 19:27:13 +00:00
cp src/SparklePony.exe /usr/share/local/sparklepony/
2010-04-27 19:20:48 +00:00
cp src/sparklepony /usr/bin/
cp data/icons /usr/share/ -R
2010-04-27 16:57:17 +00:00
2010-04-27 17:05:38 +00:00
uninstall:
2010-04-27 17:19:36 +00:00
rm /usr/bin/sparklepony
2010-04-27 19:27:13 +00:00
rm /usr/share/local/sparklepony/SparklePony.exe
rmdir /usr/share/local/sparklepony
2010-04-27 19:20:48 +00:00
rm /usr/share/icons/hicolor/*x*/places/folder-publicshare.png
2010-04-27 17:05:38 +00:00
2010-04-27 15:10:42 +00:00
clean:
2010-04-27 16:57:17 +00:00
rm src/SparklePony.exe