diff options
author | Camil Staps | 2015-12-11 13:19:52 +0000 |
---|---|---|
committer | Camil Staps | 2015-12-11 13:19:52 +0000 |
commit | 52a67a6466a4bc10f809f1fb68e2db5830c05f64 (patch) | |
tree | 14557d69017ba5ef33ec724bc0859842d7da6fcc /Practical2/Makefile | |
parent | Practical 1; samples the program fails on (diff) |
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.
Diffstat (limited to 'Practical2/Makefile')
-rw-r--r-- | Practical2/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
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) |