-
Notifications
You must be signed in to change notification settings - Fork 70
/
Makefile
37 lines (28 loc) · 867 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
CC= gcc
CFLAGS= -g -Wall -O2 -Wc++-compat
CPPFLAGS=
INCLUDES= -I.
OBJS= sys.o sdict.o paf.o asg.o common.o hit.o asm.o
PROG= miniasm minidot
LIBS= -lm -lz -lpthread
.SUFFIXES:.c .o
.c.o:
$(CC) -c $(CFLAGS) $(CPPFLAGS) $(INCLUDES) $< -o $@
all:$(PROG)
miniasm:$(OBJS) main.o
$(CC) $(CFLAGS) $^ -o $@ $(LIBS)
minidot:paf.o sdict.o dotter.o
$(CC) $(CFLAGS) $^ -o $@ $(LIBS)
clean:
rm -fr gmon.out *.o a.out $(PROG) *~ *.a *.dSYM session*
depend:
(LC_ALL=C; export LC_ALL; makedepend -Y -- $(CFLAGS) $(DFLAGS) -- *.c)
# DO NOT DELETE
asg.o: asg.h kvec.h ksort.h
asm.o: miniasm.h sdict.h asg.h kvec.h kdq.h kseq.h
common.o: miniasm.h sdict.h asg.h
dotter.o: paf.h sdict.h kvec.h eps.h ksort.h
hit.o: sdict.h paf.h kvec.h sys.h miniasm.h asg.h ksort.h
main.o: kvec.h sys.h paf.h sdict.h miniasm.h asg.h
paf.o: paf.h kseq.h
sdict.o: sdict.h khash.h