diff options
-rw-r--r-- | CHANGELOG | 4 | ||||
-rw-r--r-- | Makefile | 9 |
2 files changed, 13 insertions, 0 deletions
@@ -1,5 +1,9 @@ The modifications are: +mageiasync 0.4.1 +---------------- + - Stop syncing when quitting + mageiasync 0.4.0 ---------------- - add translations in Serbian diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..793979f --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +NAME = MageiaSync +VERSION:=0.4.1 + +MGAUPDATE = mgaupdate +MGAAPPLET = mgaapplet + +dist: + @git archive --prefix=$(NAME)-$(VERSION)/ HEAD | xz > $(NAME)-$(VERSION).tar.xz; + $(info $(NAME)-$(VERSION).tar.xz is ready) |