mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-18 01:21:48 +00:00

- Hide the remaining transports code - Drop `git_headarray`, switch to using a callback to list refs. Makes the code cleaner.
15 lines
198 B
Makefile
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)
|