SparkleShare/Makefile

16 lines
373 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:
mkdir /usr/share/sparklepony
cp src/SparklePony.exe /usr/share/sparklepony
2010-04-27 17:19:36 +00:00
cp src/sparklepony /usr/bin
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 17:05:38 +00:00
rm /usr/share/sparklepony/SparklePony.exe
mkdir /usr/share/sparklepony
2010-04-27 15:10:42 +00:00
clean:
2010-04-27 16:57:17 +00:00
rm src/SparklePony.exe