about summary refs log tree commit diff
path: root/Makefile
blob: 37008e4a2a9444dc0adddb3c3c24a3b3da689888 (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 = mscan thread hdr show list mseq msort

all: $(ALL)

mscan: mscan.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
mseq: mseq.o seq.o
msort: msort.o blaze822.o seq.o

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

FRC: