aboutsummaryrefslogtreecommitdiff
path: root/Practical2/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Practical2/Makefile')
-rw-r--r--Practical2/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Practical2/Makefile b/Practical2/Makefile
index e64a1f7..0b147dd 100644
--- a/Practical2/Makefile
+++ b/Practical2/Makefile
@@ -6,7 +6,7 @@ OBJS=checkout
all: $(OBJS)
$(OBJS): % : %.c
- $(CC) -o $@ $<
+ $(CC) -o $@ $< -Ofast
clean:
rm $(OBJS)