Files
SysTray-X/Makefile
2020-01-04 00:06:41 +01:00

16 lines
225 B
Makefile

.PHONY: clean \
systray-x-xpi
all: systray-x-xpi
clean:
echo "Deleting all XPI"
@rm -f *.xpi
systray-x-xpi:
@echo "Creating systray-x.xpi" ;\
rm -f systray-x.xpi ;\
cd webext ;\
zip ../systray-x.xpi -qr * ;\
cd ..