Commit 70e4a31a0ea52732354490162609bcee27f4ca95

Edward Thomson 2017-10-28T12:07:08

Merge pull request #4384 from pks-t/pks/rm-example-makefile examples: remove Makefile

diff --git a/examples/.gitignore b/examples/.gitignore
deleted file mode 100644
index 0e49159..0000000
--- a/examples/.gitignore
+++ /dev/null
@@ -1,15 +0,0 @@
-general
-showindex
-diff
-rev-list
-blame
-cat-file
-init
-log
-rev-parse
-remote
-status
-tag
-for-each-ref
-describe
-*.dSYM
diff --git a/examples/Makefile b/examples/Makefile
deleted file mode 100644
index bd7e92d..0000000
--- a/examples/Makefile
+++ /dev/null
@@ -1,17 +0,0 @@
-.PHONY: all
-
-CC = gcc
-CFLAGS = -g -I../include -I../src -Wall -Wextra -Wmissing-prototypes -Wno-missing-field-initializers
-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)
-
-% : %.c
-	$(CC) -o $@ common.c $(CFLAGS) $< $(LFLAGS)
-
-clean:
-	$(RM) $(APPS)
-	$(RM) -r *.dSYM