mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-06 00:13:18 +00:00

* Implemented git_diff_index_to_tree * Reworked git_diff_options structure to handle more options * Made most of the options in git_diff_options actually work * Reorganized code a bit to remove some redundancy * Added option parsing to examples/diff.c to test most options
16 lines
216 B
Makefile
16 lines
216 B
Makefile
.PHONY: all
|
|
|
|
CC = gcc
|
|
CFLAGS = -g -I../include -I../src
|
|
LFLAGS = -L../build -lgit2 -lz
|
|
APPS = general showindex diff
|
|
|
|
all: $(APPS)
|
|
|
|
% : %.c
|
|
$(CC) -o $@ $(CFLAGS) $< $(LFLAGS)
|
|
|
|
clean:
|
|
$(RM) $(APPS)
|
|
$(RM) -r *.dSYM
|