aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 665f97c236dd5a64a26e57bcb941e8196cf3aa76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
PREFIX=/usr/local
CFLAGS=-Wall -Wextra

center: center.c
	$(CC) center.c -o center $(CFLAGS)

clean:
	rm -f center

install: center
	mkdir -p $(PREFIX)/bin
	cp center $(PREFIX)/bin