source: branches/stable/GDE/CLUSTALW/makefile.org

Last change on this file was 1754, checked in by westram, 21 years ago

updated to version 1.83

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 691 bytes
Line 
1install: clustalw
2
3clean:
4        rm *.o
5
6OBJECTS = interface.o sequence.o showpair.o malign.o \
7        util.o trees.o gcgcheck.o prfalign.o pairalign.o \
8        calcgapcoeff.o calcprf1.o calcprf2.o calctree.o \
9        readmat.o alnscore.o random.o
10
11HEADERS = general.h clustalw.h
12
13CC      = cc
14CFLAGS  = -c -O
15LFLAGS  = -O -lm
16
17clustalw : $(OBJECTS) amenu.o clustalw.o
18        $(CC) -o $@ $(OBJECTS) amenu.o clustalw.o $(LFLAGS)
19
20interface.o : interface.c $(HEADERS) param.h
21        $(CC) $(CFLAGS) $*.c
22
23amenu.o : amenu.c $(HEADERS) param.h
24        $(CC) $(CFLAGS) $*.c
25
26readmat.o : readmat.c $(HEADERS) matrices.h
27        $(CC) $(CFLAGS) $*.c
28
29trees.o : trees.c $(HEADERS) dayhoff.h
30        $(CC) $(CFLAGS) $*.c
31
32.c.o :
33        $(CC) $(CFLAGS) $?
34
Note: See TracBrowser for help on using the repository browser.