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

ALL = scan thread hdr show list unmime mseq

all: $(ALL)

scan: scan.o blaze822.o seq.o rfc2047.o
thread: thread.o blaze822.o seq.o
hdr: hdr.o blaze822.o seq.o rfc2047.o
show: show.o blaze822.o seq.o rfc2045.o rfc2047.c
list: list.o
unmime: unmime.o blaze822.o seq.o rfc2045.o rfc2047.o
mseq: mseq.o seq.o

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

FRC: