Mercurial > dropbear
annotate etc/makefile.msvc @ 385:fa7a368e12b1 libtommath-dropbear
Refer to local headers locally with #include "" not #include <>.
Required now that we've got rid of the libtomcrypt variants that were
'accidentally' being included in the -I path
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Thu, 11 Jan 2007 03:09:09 +0000 |
parents | 91fbc376f010 |
children |
rev | line source |
---|---|
282 | 1 #MSVC Makefile |
2 # | |
3 #Tom St Denis | |
4 | |
5 CFLAGS = /I../ /Ox /DWIN32 /W3 | |
6 | |
7 pprime: pprime.obj | |
8 cl pprime.obj ../tommath.lib | |
9 | |
10 mersenne: mersenne.obj | |
11 cl mersenne.obj ../tommath.lib | |
12 | |
13 tune: tune.obj | |
14 cl tune.obj ../tommath.lib | |
15 | |
16 mont: mont.obj | |
17 cl mont.obj ../tommath.lib | |
18 | |
19 drprime: drprime.obj | |
20 cl drprime.obj ../tommath.lib | |
21 | |
22 2kprime: 2kprime.obj | |
23 cl 2kprime.obj ../tommath.lib |