]> git.codecow.com Git - Monocypher.git/commitdiff
ignore .gch precompiled headers
authorLoup Vaillant <loup@loup-vaillant.fr>
Sun, 19 Feb 2017 22:24:21 +0000 (23:24 +0100)
committerLoup Vaillant <loup@loup-vaillant.fr>
Sun, 19 Feb 2017 22:24:21 +0000 (23:24 +0100)
.gitignore
makefile

index 76a09f2821b5669d322b4dc794883e54d2f18fd5..4dc467441c9fa1ee15320c0e784a56d52baea0de 100644 (file)
@@ -1,5 +1,6 @@
 # backup files
 *~
 *.o
+*.gch
 test
 speed_blake2b
index 9c8cf6c6725d9cb9e3637231c82f84f92ad48c43..d096ad3bcf7aa65a87b484be22e37d4fa34cdeb4 100644 (file)
--- 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 $@ $^