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

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

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