From 52a67a6466a4bc10f809f1fb68e2db5830c05f64 Mon Sep 17 00:00:00 2001 From: Camil Staps Date: Fri, 11 Dec 2015 13:19:52 +0000 Subject: Finish first version report practical 2 Some changes were made to the code and the Makefile to clean up, make it more in line with the algorithm as described in the report, etc. No significant changes. --- Practical2/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'Practical2/Makefile') diff --git a/Practical2/Makefile b/Practical2/Makefile index 0b147dd..b400d34 100644 --- a/Practical2/Makefile +++ b/Practical2/Makefile @@ -1,4 +1,5 @@ -CC=gcc +CC=clang +CFLAGS=-Wall -Ofast OBJS=checkout .PHONY: all run clean @@ -6,7 +7,7 @@ OBJS=checkout all: $(OBJS) $(OBJS): % : %.c - $(CC) -o $@ $< -Ofast + $(CC) -o $@ $< $(CFLAGS) clean: rm $(OBJS) -- cgit v1.2.3