From: Loup Vaillant Date: Sun, 19 Feb 2017 22:24:21 +0000 (+0100) Subject: ignore .gch precompiled headers X-Git-Url: https://git.codecow.com/?a=commitdiff_plain;h=72ef5ae20c04a030ac4c65ab60039b4cb76aaed3;p=Monocypher.git ignore .gch precompiled headers --- diff --git a/.gitignore b/.gitignore index 76a09f2..4dc4674 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ # backup files *~ *.o +*.gch test speed_blake2b diff --git a/makefile b/makefile index 9c8cf6c..d096ad3 100644 --- a/makefile +++ b/makefile @@ -6,7 +6,7 @@ CFLAGS=-O2 -Wall -Wextra -std=c11 -pedantic all: test clean: - rm -f *.o test + rm -f *.o *.gch test test: test.o monocypher.o sha512.o $(CC) $(CFLAGS) -o $@ $^