📄 certbundle_makefile
字号:
#### Makefile for building and driving the CA cert extraction## Copyright (c) 1998 Ralf S. Engelschall, All Rights Reserved. ##V=1.0SSLEAY_INC=/sw/pkg/ssleay/include SSLEAY_LIB=/sw/pkg/ssleay/lib CC=ccCFLAGS=-pipe -O -g -ggdb3 -Wall -Wshadow -Wpointer-arith -Wcast-align -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -WinlineLDFLAGS=-g -ggdb3all: extractextract: cert_extract ./cert_extract cert7.db ./cert_bundle cert7.db cert.index ca-cert-bundle.pemcert_extract.o: cert_extract.c $(CC) $(CFLAGS) -I$(SSLEAY_INC) -o cert_extract.o -c cert_extract.ccert_extract: cert_extract.o $(CC) $(LDFLAGS) -ocert_extract cert_extract.o -L$(SSLEAY_LIB) -lcrypto -ldb1clean: -rm -f cert_extract.o -rm -f cert_extract -rm -f core *.core distclean: clean -rm -f cert.*.der cert.indexdist: distclean gtar --no-recursion -cvf - `find * -depth -print | sort` |\ tardy --user_number=1000 --user_name=rse \ --group_number=1000 --group_name=en \ --prefix=certbundle-$(V) - |\ gzip --best >/tmp/certbundle-$(V).tar.gz && \ mv /tmp/certbundle-$(V).tar.gz .. ls -l ../certbundle-$(V).tar.gz
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -