File: Makefile

package info (click to toggle)
ca-certificates 20141019
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 1,960 kB
  • sloc: sh: 408; makefile: 106; python: 99; ansic: 12
file content (14 lines) | stat: -rw-r--r-- 146 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#
# Makefile
#

all:
	python certdata2pem.py

clean:
	-rm -f *.crt

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