certbundle_makefile

来自「konqueror3 embedded版本, KDE环境下的当家浏览器的嵌入式版」· 代码 · 共 44 行

TXT
44
字号
####  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 + =
减小字号Ctrl + -
显示快捷键?