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