2009-01-03 21:22:43 +00:00
|
|
|
|
|
|
|
DESTDIR=/usr/local
|
2009-01-04 16:05:10 +00:00
|
|
|
PREFIX=polarssl_
|
2009-01-03 21:22:43 +00:00
|
|
|
|
|
|
|
.SILENT:
|
|
|
|
|
|
|
|
all:
|
2010-06-18 16:42:26 +00:00
|
|
|
cd library && $(MAKE) all && cd ..
|
|
|
|
cd programs && $(MAKE) all && cd ..
|
2011-06-21 08:59:00 +00:00
|
|
|
cd tests && $(MAKE) all && cd ..
|
2009-01-03 21:22:43 +00:00
|
|
|
|
2012-04-05 12:07:50 +00:00
|
|
|
no_test:
|
|
|
|
cd library && $(MAKE) all && cd ..
|
|
|
|
cd programs && $(MAKE) all && cd ..
|
|
|
|
|
|
|
|
lib:
|
|
|
|
cd library && $(MAKE) all && cd ..
|
|
|
|
|
2009-01-03 21:22:43 +00:00
|
|
|
install:
|
2009-01-04 16:05:10 +00:00
|
|
|
mkdir -p $(DESTDIR)/include/polarssl
|
|
|
|
cp -r include/polarssl $(DESTDIR)/include
|
2009-01-03 21:22:43 +00:00
|
|
|
|
|
|
|
mkdir -p $(DESTDIR)/lib
|
2009-01-04 16:05:10 +00:00
|
|
|
cp library/libpolarssl.* $(DESTDIR)/lib
|
2009-01-03 21:22:43 +00:00
|
|
|
|
|
|
|
mkdir -p $(DESTDIR)/bin
|
|
|
|
for p in programs/*/* ; do \
|
|
|
|
if [ -x $$p ] && [ ! -d $$p ] ; \
|
|
|
|
then \
|
|
|
|
f=$(PREFIX)`basename $$p` ; \
|
|
|
|
cp $$p $(DESTDIR)/bin/$$f ; \
|
|
|
|
fi \
|
|
|
|
done
|
|
|
|
|
2012-11-14 12:39:52 +00:00
|
|
|
uninstall:
|
|
|
|
rm -rf $(DESTDIR)/include/polarssl
|
|
|
|
rm -f $(DESTDIR)/lib/libpolarssl.*
|
|
|
|
|
|
|
|
for p in programs/*/* ; do \
|
|
|
|
if [ -x $$p ] && [ ! -d $$p ] ; \
|
|
|
|
then \
|
|
|
|
f=$(PREFIX)`basename $$p` ; \
|
|
|
|
rm -f $(DESTDIR)/bin/$$f ; \
|
|
|
|
fi \
|
|
|
|
done
|
|
|
|
|
2009-01-03 21:22:43 +00:00
|
|
|
clean:
|
2010-06-18 16:42:26 +00:00
|
|
|
cd library && $(MAKE) clean && cd ..
|
|
|
|
cd programs && $(MAKE) clean && cd ..
|
2011-06-21 08:59:00 +00:00
|
|
|
cd tests && $(MAKE) clean && cd ..
|
2014-01-31 15:19:43 +00:00
|
|
|
find . \( -name \*.gcno -o -name \*.gcda -o -name *.info \) -exec rm {} +
|
2009-01-03 21:22:43 +00:00
|
|
|
|
2014-01-31 12:35:18 +00:00
|
|
|
check: lib
|
|
|
|
( cd tests && $(MAKE) && $(MAKE) check )
|
2011-01-06 12:28:03 +00:00
|
|
|
|
2014-01-31 12:41:07 +00:00
|
|
|
test-ref-configs:
|
|
|
|
tests/scripts/test-ref-configs.pl
|
|
|
|
|
2014-02-24 11:39:18 +00:00
|
|
|
# note: for coverage testing, build with:
|
|
|
|
# CFLAGS='--coverage' make OFLAGS='-g3 -O0'
|
2014-02-26 18:39:01 +00:00
|
|
|
covtest:
|
2014-02-24 10:57:36 +00:00
|
|
|
make check
|
|
|
|
programs/test/selftest
|
|
|
|
( cd tests && ./compat.sh )
|
|
|
|
( cd tests && ./ssl-opt.sh )
|
|
|
|
|
2014-01-31 15:19:43 +00:00
|
|
|
lcov:
|
|
|
|
rm -rf Coverage
|
2014-06-13 10:22:07 +00:00
|
|
|
lcov --capture --initial --directory library -o files.info
|
|
|
|
lcov --capture --directory library -o tests.info
|
2014-06-16 14:24:24 +00:00
|
|
|
lcov --add-tracefile files.info --add-tracefile tests.info -o all.info
|
|
|
|
lcov --remove all.info -o final.info '*.h'
|
2014-02-24 11:39:18 +00:00
|
|
|
gendesc tests/Descriptions.txt -o descriptions
|
2015-01-22 16:11:05 +00:00
|
|
|
genhtml --title mbed TLS --description-file descriptions --keep-descriptions --legend --no-branch-coverage -o Coverage final.info
|
2014-06-16 14:24:24 +00:00
|
|
|
rm -f files.info tests.info all.info final.info descriptions
|
2014-01-31 15:19:43 +00:00
|
|
|
|
2011-01-06 12:28:03 +00:00
|
|
|
apidoc:
|
|
|
|
mkdir -p apidoc
|
2015-01-22 17:01:27 +00:00
|
|
|
doxygen doxygen/mbedtls.doxyfile
|
2011-01-06 12:28:03 +00:00
|
|
|
|
|
|
|
apidoc_clean:
|
|
|
|
if [ -d apidoc ] ; \
|
|
|
|
then \
|
|
|
|
rm -rf apidoc ; \
|
|
|
|
fi
|