Skip to content

Commit

Permalink
- Made Makefile cleaner
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Bakker committed Jun 18, 2010
1 parent 77a4358 commit 690b93d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
3 changes: 3 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
14 changes: 7 additions & 7 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 )

0 comments on commit 690b93d

Please sign in to comment.