summaryrefslogtreecommitdiff
path: root/Makefile
blob: 5a5f407008c240d5188eff7767b940a2f3d5f35b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
CFLAGS=-Wall -Wextra -Wpedantic -O3
CFLAGS+=`pkg-config --cflags libgit2`
LDLIBS+=`pkg-config --libs libgit2`


all: datever


clean:
	rm -f datever


.PHONY: all clean