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

all:
	python3 certdata2pem.py

clean:
	-rm -f *.crt

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