From d7ded2f26819497366823edf0cdb586b5f4e8722 Mon Sep 17 00:00:00 2001 From: Camil Staps Date: Mon, 30 Nov 2015 20:45:39 +0100 Subject: C version practical2 --- Practical2/c/Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Practical2/c/Makefile (limited to 'Practical2/c/Makefile') 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 + -- cgit v1.2.3