mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-24 21:28:06 +00:00
16 lines
233 B
Makefile
16 lines
233 B
Makefile
default: all
|
|
|
|
CC = gcc
|
|
CFLAGS += -g
|
|
CFLAGS += -I../../include -L../../build -L../.. -lgit2 -lpthread
|
|
|
|
OBJECTS = \
|
|
git2.o \
|
|
ls-remote.o \
|
|
fetch.o \
|
|
clone.o \
|
|
index-pack.o
|
|
|
|
all: $(OBJECTS)
|
|
$(CC) $(CFLAGS) -o git2 $(OBJECTS)
|