mbedtls/Makefile

86 lines
2.2 KiB
Makefile
Raw Normal View History

DESTDIR=/usr/local
2009-01-04 16:05:10 +00:00
PREFIX=polarssl_
.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 ..
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 ..
install:
2009-01-04 16:05:10 +00:00
mkdir -p $(DESTDIR)/include/polarssl
cp -r include/polarssl $(DESTDIR)/include
mkdir -p $(DESTDIR)/lib
2009-01-04 16:05:10 +00:00
cp library/libpolarssl.* $(DESTDIR)/lib
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
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
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 ..
find . \( -name \*.gcno -o -name \*.gcda -o -name *.info \) -exec rm {} +
2014-01-31 12:35:18 +00:00
check: lib
( cd tests && $(MAKE) && $(MAKE) check )
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
2014-02-24 11:39:18 +00:00
# add programs/test/selftest even though the selftest functions are
# called from the testsuites since it runs them in verbose mode,
# avoiding spurious "uncovered" printf lines
2014-02-24 10:57:36 +00:00
programs/test/selftest
( cd tests && ./compat.sh )
( cd tests && ./ssl-opt.sh )
lcov:
rm -rf Coverage
2014-02-24 11:39:18 +00:00
lcov --capture --directory library -o polarssl.info
gendesc tests/Descriptions.txt -o descriptions
genhtml --title PolarSSL --description-file descriptions --keep-descriptions --legend --no-branch-coverage -o Coverage polarssl.info
rm -f polarssl.info descriptions
apidoc:
mkdir -p apidoc
doxygen doxygen/polarssl.doxyfile
apidoc_clean:
if [ -d apidoc ] ; \
then \
rm -rf apidoc ; \
fi