From 72ef5ae20c04a030ac4c65ab60039b4cb76aaed3 Mon Sep 17 00:00:00 2001 From: Loup Vaillant Date: Sun, 19 Feb 2017 23:24:21 +0100 Subject: [PATCH] ignore .gch precompiled headers --- .gitignore | 1 + makefile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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 $@ $^ -- 2.47.3