mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-28 15:58:29 +00:00
15 lines
196 B
Makefile
15 lines
196 B
Makefile
default: all
|
|
|
|
CC = gcc
|
|
CFLAGS += -g
|
|
CFLAGS += -I../../include -L../../build
|
|
|
|
OBJECTS = \
|
|
git2.o \
|
|
ls-remote.o \
|
|
fetch.o \
|
|
index-pack.o
|
|
|
|
all: $(OBJECTS)
|
|
$(CC) $(CFLAGS) -o git2 $(OBJECTS)
|