summaryrefslogtreecommitdiff
path: root/examples/Makefile
blob: 6288906df7e4484c4a1aee357a8786687961d3ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
.PHONY: all

CC = gcc
CFLAGS = -g -I../include -I../src -Wall -Wextra -Wmissing-prototypes -Wno-missing-field-initializers
LFLAGS = -L../build -lgit2 -lz
APPS = general showindex diff rev-list cat-file status log

all: $(APPS)

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

clean:
	$(RM) $(APPS)
	$(RM) -r *.dSYM