From f9a3d40b485becac4cedf24c70232d1a9da52ae4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Ekstr=C3=B6m?= Date: Fri, 31 Jan 2014 14:33:25 +0200 Subject: [PATCH] gitignore: Add object files to the list of ignored files Running the Makefile outside bin or build leads to creation of these files in a place that does not get ignored. --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index d19c71a8..1b15a29f 100644 --- a/.gitignore +++ b/.gitignore @@ -7,4 +7,5 @@ /doxygen # Other files -*.exe \ No newline at end of file +*.exe +*.o