JPRED-2 Add sources of all binaries (except alscript) to Git
[jpred.git] / sources / seg / makefile
1 CC=gcc
2
3 all : seg
4
5 seg : seg.c lnfac.h genwin.h genwin.o
6         ${CC} -O -o seg seg.c genwin.o -lm
7
8 hiseg : hiseg.c lnfac.h genwin.h genwin.o
9         ${CC} -O -o hiseg hiseg.c genwin.o -lm
10
11 genwin.o : genwin.c genwin.h
12         ${CC} -O -c genwin.c
13
14 clean:
15         rm -f seg seg.o genwin.o
16