diff options
author | Camil Staps | 2015-12-10 08:42:56 +0000 |
---|---|---|
committer | Camil Staps | 2015-12-10 08:42:56 +0000 |
commit | 55748d704df7242b1acedae79c2eea7616eac2a9 (patch) | |
tree | 461e9ab103148d93b0873812c4bd9224a0b1cd50 /Practical2/Makefile | |
parent | Removed Java Practical2; moved C to main directory (diff) |
Faster implementation, test enhancement Practical2
Tester strings are padded nicely.
Implementation uses less memory and is faster with -Ofast.
Diffstat (limited to 'Practical2/Makefile')
-rw-r--r-- | Practical2/Makefile | 2 |
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) |