Commit c843736d63532b38df9e679850b914f9bb631b27

Patrick Steinhardt 2015-04-07T14:43:04

describe example: enable building by default.

diff --git a/examples/.gitignore b/examples/.gitignore
index fb96d79..0e49159 100644
--- a/examples/.gitignore
+++ b/examples/.gitignore
@@ -11,4 +11,5 @@ remote
 status
 tag
 for-each-ref
+describe
 *.dSYM
diff --git a/examples/Makefile b/examples/Makefile
index 01f8592..bd7e92d 100644
--- a/examples/Makefile
+++ b/examples/Makefile
@@ -5,6 +5,7 @@ CFLAGS = -g -I../include -I../src -Wall -Wextra -Wmissing-prototypes -Wno-missin
 LFLAGS = -L../build -lgit2 -lz
 APPS = general showindex diff rev-list cat-file status log rev-parse init blame tag remote
 APPS += for-each-ref
+APPS += describe
 
 all: $(APPS)