aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 0a3ebb979a63b3e74441b63ca74f33ef5df2aeef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
.PHONY: all
all: md-filter

md-filter: filter.o
	cc -Wall -Wextra -o md-filter filter.o `pkg-config --libs lowdown` -static

filter.o: filter.c
	cc -Wall -Wextra `pkg-config --cflags lowdown` -c -o filter.o filter.c

.PHONY: install
install: md-filter
	cp md-filter /var/www/bin

.PHONY: clean
clean:
	rm filter.o md-filter