mirror of
https://github.com/Ximi1970/systray-x.git
synced 2026-01-24 16:09:03 +01:00
16 lines
225 B
Makefile
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 ..
|