mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-03 14:12:22 +00:00
11 lines
172 B
Makefile
11 lines
172 B
Makefile
all: general showindex
|
|
|
|
general : general.c
|
|
gcc -lgit2 -o general general.c
|
|
|
|
showindex : showindex.c
|
|
gcc -lgit2 -o showindex showindex.c
|
|
|
|
clean:
|
|
rm general showindex
|