diff options
author | Edward Thomson <ethomson@edwardthomson.com> | 2017-10-28 12:07:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-28 12:07:08 +0100 |
commit | 70e4a31a0ea52732354490162609bcee27f4ca95 (patch) | |
tree | a1b6738a841bcd44a9f920ec5dda981b808d72f5 | |
parent | 8f05d2d81643177ce44d1449a551ef206b18cd5e (diff) | |
parent | 9b12eb6f78b8f285055567873ad844d119d920b3 (diff) | |
download | libgit2-70e4a31a0ea52732354490162609bcee27f4ca95.tar.gz |
Merge pull request #4384 from pks-t/pks/rm-example-makefile
examples: remove Makefile
-rw-r--r-- | examples/.gitignore | 15 | ||||
-rw-r--r-- | examples/Makefile | 17 |
2 files changed, 0 insertions, 32 deletions
diff --git a/examples/.gitignore b/examples/.gitignore deleted file mode 100644 index 0e491598a..000000000 --- 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 bd7e92dc9..000000000 --- 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 |