This repository has been archived on 2024-01-12. You can view files and clone it, but cannot push or open issues or pull requests.
WolKal3000/Makefile
2019-03-24 17:20:29 +01:00

20 lines
396 B
Makefile

NAME = kal3000-gcal-import
ICALPARSER = icalparser
INSTALLDIR = /usr/share/wordpress/wp-content/plugins/$(NAME)
VERSION = 0.1.0
release:
( cd .. ; zip -9 -r $(NAME)-$(VERSION).zip $(ICALPARSER)/readme.md $(ICALPARSER)/src/* $(ICALPARSER)/tools/* $(NAME)/*.php $(NAME)/*.txt)
install:
mkdir -p $(INSTALLDIR)
cp -vu *.txt *.php $(INSTALLDIR)
chown -R www-data:www-data $(INSTALLDIR)