summaryrefslogtreecommitdiff
path: root/examples/Makefile
blob: e866b7fee210f2881c9d31b2432e1d9de9d4676e (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 rev-parse init blame tag

all: $(APPS)

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

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