File: Makefile

package info (click to toggle)
ca-certificates 20070303
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 996 kB
  • ctags: 5
  • sloc: sh: 302; makefile: 98; ruby: 33
file content (14 lines) | stat: -rw-r--r-- 159 bytes parent folder | download | duplicates (3)
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