From 55748d704df7242b1acedae79c2eea7616eac2a9 Mon Sep 17 00:00:00 2001 From: Camil Staps Date: Thu, 10 Dec 2015 08:42:56 +0000 Subject: Faster implementation, test enhancement Practical2 Tester strings are padded nicely. Implementation uses less memory and is faster with -Ofast. --- Practical2/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Practical2/Makefile') 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) -- cgit v1.2.3