From 5635370044f97353a9f52eb0f6c4562d0f735c9f Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Tue, 27 Apr 2010 17:57:17 +0100 Subject: [PATCH] Basic make install option --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8b69b9cc..3f80d35d 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,9 @@ SparklePony.exe : src/SparklePony.cs gmcs -pkg:gtk-sharp-2.0 -pkg:notify-sharp -pkg:dbus-sharp src/SparklePony.cs +install: + mkdir /usr/share/sparklepony + cp src/SparklePony.exe /usr/share/sparklepony + clean: - rm SparklePony.exe + rm src/SparklePony.exe