summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Steinhardt <ps@pks.im>2019-01-24 10:27:07 +0100
committerPatrick Steinhardt <ps@pks.im>2019-02-15 12:04:14 +0100
commitc4271314e10b13acbe57c4a1dac0209d1c14a28a (patch)
tree04c1689f8628cee2ecac00db72c18b63552fa9fd
parenta540e6bbcbbb1378b2a6c462c4f40972c00ae1e4 (diff)
downloadlibgit2-c4271314e10b13acbe57c4a1dac0209d1c14a28a.tar.gz
examples: remove unused Makefile
This Makefile isn't used anymore and probably won't work anyway. Remove it in favor of the existing CMake build instructions.
-rw-r--r--examples/network/Makefile22
1 files changed, 0 insertions, 22 deletions
diff --git a/examples/network/Makefile b/examples/network/Makefile
deleted file mode 100644
index f65c6cb26..000000000
--- a/examples/network/Makefile
+++ /dev/null
@@ -1,22 +0,0 @@
-default: all
-
-CC = gcc
-CFLAGS += -g
-CFLAGS += -I../../include
-LDFLAGS += -L../../build -L../..
-LIBRARIES += -lgit2 -lpthread
-
-OBJECTS = \
- git2.o \
- ls-remote.o \
- fetch.o \
- clone.o \
- index-pack.o \
- common.o
-
-all: $(OBJECTS)
- $(CC) $(CFLAGS) $(LDFLAGS) -o git2 $(OBJECTS) $(LIBRARIES)
-
-clean:
- $(RM) $(OBJECTS)
- $(RM) git2