diff options
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 + |