From 258cf5002b9139086bd882d52d1fd582754df814 Mon Sep 17 00:00:00 2001 From: Abhishek Kumar Date: Wed, 4 May 2016 10:14:59 +0530 Subject: [PATCH 1/2] .gitignore examples/tree_traversal --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 40be4fa..a82e7ec 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ examples/lispy examples/maths examples/smallc examples/foobar +examples/tree_traversal From e032b410b2a74578c9865dddcd9f1f826133082a Mon Sep 17 00:00:00 2001 From: Abhishek Kumar Date: Wed, 4 May 2016 10:32:02 +0530 Subject: [PATCH 2/2] Remove foobar and tree_traversal too while doing 'make clean' --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4f3cca0..9a45c77 100644 --- a/Makefile +++ b/Makefile @@ -20,4 +20,5 @@ examples/%: examples/%.c mpc.c $(CC) $(CFLAGS) $^ -lm -o $@ clean: - rm -rf test examples/doge examples/lispy examples/maths examples/smallc + rm -rf test examples/doge examples/lispy examples/maths examples/smallc \ + examples/foobar examples/tree_traversal