diff options
Diffstat (limited to 'runtime/bench2')
-rw-r--r-- | runtime/bench2/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/runtime/bench2/Makefile b/runtime/bench2/Makefile new file mode 100644 index 00000000..ffb2991a --- /dev/null +++ b/runtime/bench2/Makefile @@ -0,0 +1,7 @@ +all: itest + +itest: itest.c + gcc -D_GNU_SOURCE -Wall -Wextra -Wstrict-prototypes -Werror -O3 -o itest itest.c -lpthread + +clean: + /bin/rm -f itest |