summaryrefslogtreecommitdiff
path: root/mozilla/Makefile
blob: 94ad5b75a9ad3ba30beba30c7e7abe4c84d069a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#
# Makefile
#

all:
	ruby certdata2pem.rb < certdata.txt

clean:
	-rm -f *.crt

install:
	for p in *.crt; do \
	 install -m 644 $$p $(CERTSDIR)/$$p ; \
	done