about summary refs log tree commit diff
path: root/Makefile
blob: 2d66f2962166e3ee0bb7a5404e43212699975064 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
CFLAGS=-g -O1 -Wall -Wno-switch -Wextra -Wwrite-strings -fstack-protector-strong -D_FORTIFY_SOURCE=2

ALL = scan thread hdr

all: $(ALL)

scan: blaze822.o scan.o fmt_rfc2047.o
thread: blaze822.o thread.o
hdr: blaze822.o hdr.o

clean: FRC
	-rm -f $(ALL) *.o

FRC: