aboutsummaryrefslogtreecommitdiffstats
path: root/executor/Makefile
blob: a84d068804b27d8d9bdf3ce2885265ad5a77dea5 (plain)
1
2
3
4
5
6
7
8
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