diff --git a/.gitignore b/.gitignore index c4c4ffc..773cf38 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ *.zip +rssfinder/LICENSE diff --git a/Makefile b/Makefile index 28c5032..0185899 100644 --- a/Makefile +++ b/Makefile @@ -6,9 +6,14 @@ FILES += $(PROJECT)/finder.js FILES += $(PROJECT)/metadata.desktop FILES += $(PROJECT)/rss.svg FILES += $(PROJECT)/clipboard.svg +FILES += $(PROJECT)/LICENSE -package: +package: copy_license zip -X $(PROJECT)_v$(VERSION).zip $(FILES) +copy_license: + @cp "LICENSE" "$(PROJECT)/LICENSE" + clean: - rm "./$(PROJECT)_v$(VERSION).zip" + rm -f "./$(PROJECT)/LICENSE" + rm -f "./$(PROJECT)_v$(VERSION).zip"