Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile « network « examples - github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c21869ac96cb1d1635a4db80331f052d63d53686 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
default: all

CC = gcc
CFLAGS += -g
CFLAGS += -I../../include -L../../ -lgit2 -lpthread

OBJECTS = \
  git2.o \
  ls-remote.o \
  fetch.o \
  index-pack.o

all: $(OBJECTS)
	$(CC) $(CFLAGS) -o git2 $(OBJECTS)