aboutsummaryrefslogtreecommitdiffstats
path: root/xul-ext/Makefile
blob: 7fa5d6a4716756f341ad406f3b98aba848573481 (plain)
1
2
3
4
5
6
7
8
9
10
XPI_NAME ?= ../icevault.xpi
all: $(XPI_NAME)

%.xpi: chrome.manifest install.rdf COPYING $(shell find chrome/ defaults/ -type f)
	zip $@ $^

clean:
	rm -f $(XPI_NAME)

.PHONY: all clean