mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-28 06:47:53 +00:00

Not everyone who indexes a packfile wants to put it in the standard git repository location.
15 lines
221 B
Makefile
15 lines
221 B
Makefile
default: all
|
|
|
|
CC = gcc
|
|
CFLAGS += -g
|
|
CFLAGS += -I../../include -L../../build -L../.. -lgit2 -lpthread
|
|
|
|
OBJECTS = \
|
|
git2.o \
|
|
ls-remote.o \
|
|
fetch.o \
|
|
index-pack.o
|
|
|
|
all: $(OBJECTS)
|
|
$(CC) $(CFLAGS) -o git2 $(OBJECTS)
|