initial commit
This commit is contained in:
12
doc/examples/ssl/demo-ca/Makefile
Normal file
12
doc/examples/ssl/demo-ca/Makefile
Normal file
@@ -0,0 +1,12 @@
|
||||
#!/usr/bin/make -f
|
||||
|
||||
intermediate_ca_certs := 1-CA-Internal.crt
|
||||
|
||||
certs := $(patsubst %.pem,%.crt,$(sort $(wildcard *.pem)))
|
||||
target_certs := $(patsubst %.crt,%.chain.crt,$(certs))
|
||||
|
||||
.PHONY: all
|
||||
all: $(target_certs)
|
||||
|
||||
%.chain.crt: %.crt $(intermediate_ca_certs)
|
||||
cat $+ | tee $@ >/dev/null
|
Reference in New Issue
Block a user