Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile « examples - github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: efb55547b41f3022b4d38b3fd611fb5774b29ea5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
.PHONY: all

CC = gcc
CFLAGS = -g -I../include
LFLAGS = -L../build -lgit2 -lz

all: general showindex

% : %.c
	$(CC) -o $@ $(CFLAGS) $< $(LFLAGS)

clean:
	$(RM) general showindex