diff --git a/Makefile.am b/Makefile.am index 7cfa68880..a9c3fc597 100644 --- a/Makefile.am +++ b/Makefile.am @@ -15,17 +15,25 @@ include examples/echoserver/include.am include testsuite/include.am include sslSniffer/sslSnifferTest/include.am -# !!!! first line of rule has to start with a hard (real) tab, not spaces -basic: - cd src; $(MAKE); cd ../testsuite; $(MAKE); cd ../ # !!!! 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; \