a bunch of stuff, i don't know
[puffcrash.git] / Makefile
CommitLineData
46f0819c 1CFLAGS= -Wall -Wextra -Werror -std=c99
2
3DEBUG= 1
4.ifdef DEBUG
5CFLAGS+= -O0 -g
6.endif
7
8SANITY= 1
9.ifdef SANITY
10CFLAGS+= -Wno-unused-variable -Wno-unused-parameter -Wno-comment
11.endif
12
13OUT= bin/puffcrash
14DESTDIR= /usr/local/
15
16all: build
17
18build:
19 gcc $(CFLAGS) puffcrash.c -o $(OUT)
20
21install: build
22 install -c -s -o root -g bin -m 555 $(OUT) $(DESTDIR)$(OUT)
42f4441b 23 install -c -o root -g wheel -m 664 puffcrash.conf /etc/puffcrash.conf
24