diff options
Diffstat (limited to 'i2c/sw/Makefile')
-rwxr-xr-x | i2c/sw/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/i2c/sw/Makefile b/i2c/sw/Makefile new file mode 100755 index 0000000..0142c92 --- /dev/null +++ b/i2c/sw/Makefile @@ -0,0 +1,7 @@ +all: hash_tester_i2c + +hash_tester_i2c: hash_tester_i2c.c + gcc -Wall -o $@ $^ + +clean: + rm -f hash_tester_i2c |