- Made Makefile cleaner

This commit is contained in:
Paul Bakker 2010-06-18 16:42:26 +00:00
parent 77a43580da
commit 690b93d91a
2 changed files with 10 additions and 7 deletions

View file

@ -5,6 +5,9 @@ Features
* Added support for SSL_EDH_RSA_AES_128_SHA and
SSL_EDH_RSA_CAMELLIA_128_SHA ciphersuites
Changes
* Made Makefile cleaner
= Version 0.13.1 released on 2010-03-24
Bug fixes
* Fixed Makefile in library that was mistakenly merged

View file

@ -5,9 +5,9 @@ PREFIX=polarssl_
.SILENT:
all:
cd library && make all && cd ..
cd programs && make all && cd ..
cd tests && make all && cd ..
cd library && $(MAKE) all && cd ..
cd programs && $(MAKE) all && cd ..
cd tests && $(MAKE) all && cd ..
install:
mkdir -p $(DESTDIR)/include/polarssl
@ -26,9 +26,9 @@ install:
done
clean:
cd library && make clean && cd ..
cd programs && make clean && cd ..
cd tests && make clean && cd ..
cd library && $(MAKE) clean && cd ..
cd programs && $(MAKE) clean && cd ..
cd tests && $(MAKE) clean && cd ..
check:
( cd tests && make check )
( cd tests && $(MAKE) check )