about summary refs log tree commit diff
path: root/Makefile
blob: fb1f502faa17d24720a56e983a0100c0d254dc52 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
ALL=reap

CFLAGS=-g -O2 -Wall -Wno-switch -Wextra -Wwrite-strings

DESTDIR=
PREFIX=/usr/local
BINDIR=$(PREFIX)/bin
MANDIR=$(PREFIX)/share/man

all: $(ALL)

clean: FRC
	rm -f $(ALL)

FRC: