From 0d4180ab0a80ea854f28b7debff22548ce5974a5 Mon Sep 17 00:00:00 2001 From: Camil Staps Date: Wed, 9 Dec 2015 23:27:53 +0000 Subject: Removed Java Practical2; moved C to main directory --- Practical2/Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Practical2/Makefile (limited to 'Practical2/Makefile') diff --git a/Practical2/Makefile b/Practical2/Makefile new file mode 100644 index 0000000..e64a1f7 --- /dev/null +++ b/Practical2/Makefile @@ -0,0 +1,13 @@ +CC=gcc +OBJS=checkout + +.PHONY: all run clean + +all: $(OBJS) + +$(OBJS): % : %.c + $(CC) -o $@ $< + +clean: + rm $(OBJS) + -- cgit v1.2.3