File: Makefile

package info (click to toggle)
ca-certificates 20210119
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,508 kB
  • sloc: sh: 451; makefile: 105; python: 99; ansic: 12
file content (14 lines) | stat: -rw-r--r-- 147 bytes parent folder | download
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