JPRED-2 Add alscript to the Git repository
[jpred.git] / sources / alscript / src / makefile.sol
1 # Makefile for ALSCRIPT, msf2blc and clus2blc programs
2 #
3 # 22 June 1993:  Add alsnum program
4 #
5 # These programs require an ANSI C compiler
6 #
7 # This makefile is for Sun computers running Solaris 2.x
8 #
9 CC = cc 
10 MACHINE = sol
11 CFLAGS = -O
12 LFLAGS = -I./ -o
13 ALOBJS = alscript.o alps.o gjutil.o agetbloc.o ckdd.o gjtimes.o
14 #
15 PROGS = alscript msf2blc clus2blc alsnum fast2blc
16
17 all: $(PROGS)
18
19 alscript: $(ALOBJS)
20         $(CC) $(CFLAGS) $(ALOBJS) $(LFLAGS) alscript
21 msf2blc: msf2blc.o gjutil.o gjtimes.o
22         $(CC) $(CFLAGS) msf2blc.o gjutil.o $(LFLAGS) msf2blc
23 clus2blc: clus2blc.o gjutil.o gjtimes.o
24         $(CC) $(CFLAGS) clus2blc.o gjutil.o $(LFLAGS) clus2blc
25 fast2blc: fast2blc.o gjutil.o  gjtimes.o
26         $(CC) $(CFLAGS) fast2blc.o gjutil.o $(LFLAGS) fast2blc
27 alsnum: alsnum.o gjutil.o agetbloc.o gjtimes.o
28         $(CC) $(CFLAGS) alsnum.o gjutil.o agetbloc.o gjtimes.o $(LFLAGS) alsnum
29
30 alscript.o: alscript.c array.h gjutil.h version.h
31         $(CC) $(CFLAGS) -c alscript.c
32
33 alps.o: alps.c array.h gjutil.h version.h
34         $(CC) $(CFLAGS) -c alps.c
35
36 agetbloc.o: agetbloc.c array.h gjutil.h
37         $(CC) $(CFLAGS) -c agetbloc.c
38
39 gjutil.o: gjutil.c gjutil.h
40         $(CC) $(CFLAGS) -c gjutil.c
41
42 clus2blc.o: clus2blc.c array.h gjutil.h defaults.h
43         $(CC) $(CFLAGS) -c clus2blc.c
44
45 fast2blc.o: fast2blc.c array.h gjutil.h defaults.h
46         $(CC) $(CFLAGS) -c fast2blc.c
47
48 msf2blc.o: msf2blc.c array.h gjutil.h defaults.h
49         $(CC) $(CFLAGS) -c msf2blc.c
50
51 ckdd.o: ckdd.c array.h
52         $(CC) $(CFLAGS) -c ckdd.c
53
54 alsnum.o: alsnum.c array.h gjutil.h defaults.h
55         $(CC) $(CFLAGS) -c alsnum.c
56
57
58
59
60
61
62
63