~ubuntu-branches/ubuntu/raring/paml/raring

« back to all changes in this revision

Viewing changes to src/Makefile.MSVC

  • Committer: Bazaar Package Importer
  • Author(s): Pjotr Prins
  • Date: 2010-09-11 23:01:37 UTC
  • Revision ID: james.westby@ubuntu.com-20100911230137-jjf5d0blx5p0m9ba
Tags: upstream-4.4c
ImportĀ upstreamĀ versionĀ 4.4c

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
PRGS =  baseml codeml basemlg mcmctree pamp evolver yn00 chi2 
 
2
CC = cl # cc, gcc, cl
 
3
CFLAGS =  -O2 -Ot 
 
4
 
 
5
DEFINE = #
 
6
LIBS = #-lm -lM
 
7
 
 
8
all : $(PRGS)
 
9
 
 
10
baseml : baseml.c tools.c
 
11
  $(CC) $(CFLAGS) baseml.c tools.c $(LIBS)
 
12
basemlg : basemlg.c tools.c
 
13
  $(CC) $(CFLAGS) basemlg.c tools.c $(LIBS)
 
14
codeml : codeml.c tools.c
 
15
  $(CC) $(CFLAGS) codeml.c tools.c $(LIBS)
 
16
evolver : evolver.c tools.c
 
17
  $(CC) $(CFLAGS) evolver.c tools.c $(LIBS)
 
18
mcmctree : mcmctree.c tools.c
 
19
  $(CC) $(CFLAGS) mcmctree.c tools.c $(LIBS)
 
20
  $(CC) $(CFLAGS) -FemcmctreeHH.exe -DHardHard mcmctree.c tools.c $(LIBS)
 
21
  $(CC) $(CFLAGS) -FemcmctreeHS.exe -DHardSoft mcmctree.c tools.c $(LIBS)
 
22
pamp : pamp.c tools.c 
 
23
  $(CC) $(CFLAGS) pamp.c tools.c $(LIBS)
 
24
yn00 : yn00.c tools.c
 
25
  $(CC) $(CFLAGS) yn00.c tools.c $(LIBS)
 
26
chi2 : chi2.c
 
27
  $(CC) $(CFLAGS) chi2.c $(LIBS)