diff options
author | Camil Staps | 2015-11-30 20:45:39 +0100 |
---|---|---|
committer | Camil Staps | 2015-11-30 20:48:24 +0100 |
commit | d7ded2f26819497366823edf0cdb586b5f4e8722 (patch) | |
tree | fd989bb381486e91a5d16f0a791a503d61fc069b /Practical2/c/Makefile | |
parent | Practical2 seems to work (diff) |
C version practical2
Diffstat (limited to 'Practical2/c/Makefile')
-rw-r--r-- | Practical2/c/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Practical2/c/Makefile b/Practical2/c/Makefile new file mode 100644 index 0000000..270a693 --- /dev/null +++ b/Practical2/c/Makefile @@ -0,0 +1,15 @@ +CC=gcc + +.PHONY: all run clean + +all: checkout + +checkout: + $(CC) -o checkout checkout.c + +run: + ./checkout + +clean: + rm checkout + |