diff options
author | Luke Bratch <l_bratch@yahoo.co.uk> | 2010-10-27 14:20:24 +0100 |
---|---|---|
committer | Luke Bratch <l_bratch@yahoo.co.uk> | 2010-10-27 14:20:24 +0100 |
commit | 73ebf729fa15267ac77a0f304b383137f9a4474b (patch) | |
tree | c6980ce2d844c4d7203213e7ad5b3a6654a219cc | |
parent | 3241f16e77a37158fcc7d25ce32723aacb43215d (diff) |
Add Makefile
-rw-r--r-- | Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..6775a96 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +CC = gcc + +blasms: blasms.c + $(CC) blasms.c -o blasms + +clean: blasms + rm -f blasms |