mbedtls/Makefile

89 lines
2.1 KiB
Makefile
Raw Normal View History

DESTDIR=/usr/local
2015-01-27 13:05:16 +00:00
PREFIX=mbedtls_
.SILENT:
all: programs tests
no_test: programs
programs: lib
$(MAKE) -C programs
2012-04-05 12:07:50 +00:00
lib:
$(MAKE) -C library
tests: lib
$(MAKE) -C tests
2012-04-05 12:07:50 +00:00
install:
2015-03-09 17:05:11 +00:00
mkdir -p $(DESTDIR)/include/mbedtls
cp -r include/mbedtls $(DESTDIR)/include
mkdir -p $(DESTDIR)/lib
cp -RP library/libmbedtls.* $(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 ; \
2015-01-27 13:05:16 +00:00
ln -sf $$f $(DESTDIR)/bin/$$o ; \
fi \
done
uninstall:
2015-03-09 17:05:11 +00:00
rm -rf $(DESTDIR)/include/mbedtls
2015-01-27 13:05:16 +00:00
rm -f $(DESTDIR)/lib/libmbedtls.*
for p in programs/*/* ; do \
if [ -x $$p ] && [ ! -d $$p ] ; \
then \
f=$(PREFIX)`basename $$p` ; \
rm -f $(DESTDIR)/bin/$$f ; \
2015-01-27 13:05:16 +00:00
rm -f $(DESTDIR)/bin/$$o ; \
fi \
done
clean:
$(MAKE) -C library clean
$(MAKE) -C programs clean
$(MAKE) -C tests clean
find . \( -name \*.gcno -o -name \*.gcda -o -name *.info \) -exec rm {} +
check: tests
$(MAKE) -C tests 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
programs/test/selftest
( cd tests && ./compat.sh )
( cd tests && ./ssl-opt.sh )
lcov:
rm -rf Coverage
lcov --capture --initial --directory library -o files.info
lcov --capture --directory library -o tests.info
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-23 17:40:33 +00:00
genhtml --title "mbed TLS" --description-file descriptions --keep-descriptions --legend --no-branch-coverage -o Coverage final.info
rm -f files.info tests.info all.info final.info descriptions
apidoc:
mkdir -p apidoc
2015-01-22 17:01:27 +00:00
doxygen doxygen/mbedtls.doxyfile
apidoc_clean:
if [ -d apidoc ] ; \
then \
rm -rf apidoc ; \
fi