Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(532)

Side by Side Diff: build.sh

Issue 660204: Upgrade to tpm-emulator version 0.7. (Closed)
Patch Set: Created 10 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « build.bat ('k') | config.h.in » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/bin/sh
2
3 BUILD_DIR="build"
4
5 if [ "$1" == "clean" ]; then
6 rm -rf $BUILD_DIR
7 fi
8
9 if [ ! -d $BUILD_DIR ]; then
10 mkdir $BUILD_DIR || exit 1
11 fi
12
13 cd build
14 cmake ../ #-DMTM_EMULATOR=ON
15 make
16 cd ..
17
18 exit 0
19
OLDNEW
« no previous file with comments | « build.bat ('k') | config.h.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698