- Added Makefile for tests

This commit is contained in:
Paul Bakker
2009-07-11 19:15:43 +00:00
parent 69998dd2c8
commit 0049c2fd19
2 changed files with 83 additions and 0 deletions

View File

@@ -7,6 +7,7 @@ PREFIX=polarssl_
all:
cd library && make all && cd ..
cd programs && make all && cd ..
cd tests && make all && cd ..
install:
mkdir -p $(DESTDIR)/include/polarssl
@@ -27,4 +28,5 @@ install:
clean:
cd library && make clean && cd ..
cd programs && make clean && cd ..
cd tests && make clean && cd ..