File: Makefile

package info (click to toggle)
ca-certificates 20020323
  • links: PTS
  • area: main
  • in suites: woody
  • size: 596 kB
  • ctags: 3
  • sloc: makefile: 65; sh: 33; ruby: 26
file content (14 lines) | stat: -rw-r--r-- 159 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#
# Makefile
#

all:
	ruby certdata2pem.rb < certdata.txt

clean:
	-rm -f *.pem

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