Mercurial > dropbear
comparison makefile @ 16:09ab3354aa21 libtomcrypt
propagate of e8bea23df30f9f46c647d06db3b223427b4e3604 and b0b6b4a8843b94d9f049cb5ffe0b1ae91ec1bf8b from branch 'au.asn.ucc.matt.ltc-orig' to 'au.asn.ucc.matt.ltc-db'
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Tue, 15 Jun 2004 14:27:14 +0000 |
parents | 6362d3854bb4 059ec00f32a1 |
children | 712dd6dfb0eb |
comparison
equal
deleted
inserted
replaced
15:6362d3854bb4 | 16:09ab3354aa21 |
---|---|
18 # Archiver [makes .a files] | 18 # Archiver [makes .a files] |
19 #AR=ar | 19 #AR=ar |
20 #ARFLAGS=r | 20 #ARFLAGS=r |
21 | 21 |
22 # Compilation flags. Note the += does not write over the user's CFLAGS! | 22 # Compilation flags. Note the += does not write over the user's CFLAGS! |
23 CFLAGS += -c -I./ -Wall -Wsign-compare -W -Wshadow | 23 # The rest of the flags come from the parent Dropbear makefile |
24 CFLAGS += -c -I./ | |
24 # -Werror | 25 # -Werror |
25 | 26 |
26 # optimize for SPEED | 27 # optimize for SPEED |
27 #CFLAGS += -O3 -funroll-loops | 28 #CFLAGS += -O3 -funroll-loops |
28 | 29 |
29 #add -fomit-frame-pointer. GCC v3.2 is buggy for certain platforms! | 30 #add -fomit-frame-pointer. v3.2 is buggy for certain platforms! |
30 CFLAGS += -fomit-frame-pointer | 31 #CFLAGS += -fomit-frame-pointer |
31 | 32 |
32 # optimize for SIZE | 33 # optimize for SIZE |
33 CFLAGS += -Os | 34 #CFLAGS += -Os |
34 | 35 |
35 # compile for DEBUGING | 36 # compile for DEBUGING |
36 #CFLAGS += -g3 | 37 #CFLAGS += -g3 |
37 #ch1-01-3 | 38 #ch1-01-3 |
38 | 39 |