forked from wolfSSL/wolfssl
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Brian Aker commits plus some minor changes like AM_CFLAGS getting AC_…
…SUBST and --enable-xxx #ifdef to new header layout
- Loading branch information
Showing
146 changed files
with
1,199 additions
and
853 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,58 +1,71 @@ | ||
EXTRA_DIST = certs/*.pem certs/*.der certs/*.txt certs/*.raw \ | ||
lib/dummy *.sln *.vcproj cyassl-iphone.xcodeproj/project.pbxproj \ | ||
doc/*.txt swig/README swig/*.i swig/cyassl_adds.c swig/*.sh swig/runme.* \ | ||
swig/python_cyassl.vcproj swig/rsasign.py | ||
# includes append to these: | ||
SUFFIXES = | ||
TESTS = | ||
CLEANFILES = | ||
DISTCLEANFILES = | ||
bin_PROGRAMS = | ||
noinst_HEADERS = | ||
lib_LTLIBRARIES = | ||
man_MANS = | ||
noinst_LTLIBRARIES = | ||
noinst_PROGRAMS = | ||
include_HEADERS = | ||
nobase_include_HEADERS = | ||
check_PROGRAMS = | ||
EXTRA_HEADERS = | ||
BUILT_SOURCES= | ||
EXTRA_DIST= | ||
doc_DATA= | ||
|
||
ACLOCAL_AMFLAGS = -I m4 | ||
exampledir = $(docdir)/@PACKAGE@/example | ||
example_DATA= | ||
EXTRA_DIST+= $(example_DATA) | ||
|
||
certsdir = $(sysconfdir)/ssl/certs | ||
certs_DATA= | ||
EXTRA_DIST+= $(certs_DATA) | ||
|
||
EXTRA_DIST+= $(doc_DATA) | ||
|
||
ACLOCAL_AMFLAGS= -I m4 --install | ||
|
||
EXTRA_DIST+= lib/dummy | ||
|
||
EXTRA_DIST+= cyassl-ntru.vcproj | ||
EXTRA_DIST+= cyassl.vcproj | ||
EXTRA_DIST+= cyassl-iphone.xcodeproj/project.pbxproj | ||
EXTRA_DIST+= cyassl-ntru.sln | ||
EXTRA_DIST+= cyassl.sln | ||
|
||
include cyassl/include.am | ||
include certs/include.am | ||
include doc/include.am | ||
include swig/include.am | ||
|
||
include src/include.am | ||
include ctaocrypt/test/include.am | ||
include ctaocrypt/benchmark/include.am | ||
include ctaocrypt/src/include.am | ||
include ctaocrypt/test/include.am | ||
include examples/client/include.am | ||
include examples/server/include.am | ||
include examples/echoclient/include.am | ||
include examples/echoserver/include.am | ||
include testsuite/include.am | ||
include sslSniffer/sslSnifferTest/include.am | ||
|
||
TESTS += $(check_PROGRAMS) | ||
test: check | ||
|
||
# !!!! first line of rule has to start with a hard (real) tab, not spaces | ||
basic: | ||
$(MAKE) src/libcyassl.la; \ | ||
$(MAKE) testsuite/testsuite; \ | ||
cd testsuite; \ | ||
./testsuite; \ | ||
cd ../; | ||
|
||
egs: | ||
$(MAKE) examples/client/client; \ | ||
$(MAKE) examples/echoclient/echoclient;\ | ||
$(MAKE) examples/server/server; \ | ||
$(MAKE) examples/echoserver/echoserver; | ||
|
||
ctc: | ||
$(MAKE) ctaocrypt/test/test; \ | ||
$(MAKE) ctaocrypt/benchmark/benchmark; | ||
|
||
openssl-links: | ||
cd lib; ln -s ../src/.libs/libcyassl.a libcrypto.a; \ | ||
ln -s ../src/.libs/libcyassl.a libssl.a; \ | ||
ln -s ../src/.libs/libcyassl.a libcyassl.a; cd ../ | ||
|
||
# !!! test -e with a .name like .libs then a * like *dylib fails so just | ||
# look for the .dylib on OS X, and .so otherwise but copy all parts | ||
install: | ||
$(mkinstalldirs) $(DESTDIR)$(includedir)/openssl $(DESTDIR)$(libdir); \ | ||
cp -fpR include/openssl/* $(DESTDIR)$(includedir)/openssl; \ | ||
cp -fpR ctaocrypt/include/*.h $(DESTDIR)$(includedir); \ | ||
rm $(DESTDIR)$(includedir)/ctc_asn.h; \ | ||
rm $(DESTDIR)$(includedir)/ctc_coding.h; \ | ||
rm $(DESTDIR)$(includedir)/ctc_error.h; \ | ||
rm $(DESTDIR)$(includedir)/ctc_misc.h; \ | ||
cp -fpR src/libcyassl.la $(DESTDIR)$(libdir); \ | ||
if test -e src/.libs/libcyassl.a; then \ | ||
cp -fp src/.libs/libcyassl.a $(DESTDIR)$(libdir); fi; \ | ||
if test -e src/.libs/libcyassl.so; then \ | ||
cp -fpR src/.libs/libcyassl.so* $(DESTDIR)$(libdir); fi; \ | ||
if test -e src/.libs/libcyassl.dylib; then \ | ||
cp -fpR src/.libs/libcyassl.*dylib $(DESTDIR)$(libdir); fi; | ||
|
||
merge-clean: | ||
@find ./ | $(GREP) \.gcda | xargs rm -f | ||
@find ./ | $(GREP) \.gcno | xargs rm -f | ||
@find ./ | $(GREP) \.gz | xargs rm -f | ||
@find ./ | $(GREP) \.orig | xargs rm -f | ||
@find ./ | $(GREP) \.rej | xargs rm -f | ||
@find ./ | $(GREP) \.rpm | xargs rm -f | ||
@find ./ | $(GREP) \.THIS | xargs rm -f | ||
@find ./ | $(GREP) \.OTHER | xargs rm -f | ||
@find ./ | $(GREP) \.BASE | xargs rm -f | ||
@find ./ | $(GREP) \~$$ | xargs rm -f |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# vim:ft=automake | ||
# All paths should be given relative to the root | ||
# | ||
|
||
certs_DATA+= \ | ||
certs/ca-cert.pem \ | ||
certs/ca-key.pem \ | ||
certs/client-cert.pem \ | ||
certs/client-keyEnc.pem \ | ||
certs/client-key.pem \ | ||
certs/dsa512.pem \ | ||
certs/dsa-cert.pem \ | ||
certs/ecc-key.pem \ | ||
certs/ntru-cert.pem \ | ||
certs/server-cert.pem \ | ||
certs/server-ecc.pem \ | ||
certs/server-keyEnc.pem \ | ||
certs/server-key.pem \ | ||
certs/server-keyPkcs8Enc12.pem \ | ||
certs/server-keyPkcs8Enc2.pem \ | ||
certs/server-keyPkcs8Enc.pem \ | ||
certs/server-keyPkcs8.pem | ||
|
||
certs_DATA+= \ | ||
certs/ca-key.der \ | ||
certs/client-cert.der \ | ||
certs/client-key.der \ | ||
certs/dh1024.der \ | ||
certs/rsa1024.der \ | ||
certs/dsa512.der \ | ||
certs/ecc-key.der | ||
|
||
EXTRA_DIST+= ${certs_DATA} | ||
|
||
doc_DATA+= certs/taoCert.txt | ||
|
||
EXTRA_DIST+= certs/ntru-key.raw | ||
|
File renamed without changes.
Oops, something went wrong.