diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2015-10-12 10:16:57 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2015-10-12 10:16:57 +0200 |
| commit | 874c5754bb22dbf77d6b600ff91f0f4f1fc5073a (patch) | |
| tree | 0075fbd088046ad5c86e6e972235701d68b3ce7c /executor/Makefile | |
initial commit
Diffstat (limited to 'executor/Makefile')
| -rw-r--r-- | executor/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/executor/Makefile b/executor/Makefile new file mode 100644 index 000000000..a84d06880 --- /dev/null +++ b/executor/Makefile @@ -0,0 +1,9 @@ +# Copyright 2015 syzkaller project authors. All rights reserved. +# Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file. + +executor: executor.cc syscalls.h + gcc executor.cc -o executor -lpthread -static -Wall -O1 -g + +format: executor.cc + clang-format --style=file -i executor.cc + |
