libgit2/examples/network/Makefile
Vicent Marti d88d4311c7 remote: Cleanup the remotes code
- Hide the remaining transports code
- Drop `git_headarray`, switch to using a callback to list refs. Makes
the code cleaner.
2011-11-28 08:40:40 +01:00

15 lines
198 B
Makefile

default: all
CC = gcc
CFLAGS += -g
CFLAGS += -I../../include -L../../ -lgit2
OBJECTS = \
git2.o \
ls-remote.o \
fetch.o \
index-pack.o
all: $(OBJECTS)
$(CC) $(CFLAGS) -o git2 $(OBJECTS)