diff options
author | Richard Levitte <levitte@openssl.org> | 2003-05-30 00:20:47 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2003-05-30 00:20:47 +0200 |
commit | 01fc834bc953d4ca127af3accea02fc0bc26b86a (patch) | |
tree | 87a7586816edb9ae401989f936181a23fd910b38 /crypto/md5 | |
parent | PR: 630 (diff) | |
download | openssl-01fc834bc953d4ca127af3accea02fc0bc26b86a.tar.xz openssl-01fc834bc953d4ca127af3accea02fc0bc26b86a.zip |
Have ASFLAGS be defined the same way as CFLAGS
Diffstat (limited to 'crypto/md5')
-rw-r--r-- | crypto/md5/Makefile.ssl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/md5/Makefile.ssl b/crypto/md5/Makefile.ssl index 56cab5d882..2d4df972ff 100644 --- a/crypto/md5/Makefile.ssl +++ b/crypto/md5/Makefile.ssl @@ -6,7 +6,7 @@ DIR= md5 TOP= ../.. CC= cc CPP= $(CC) -E -INCLUDES= +INCLUDES=-I.. -I$(TOP) -I../../include CFLAG=-g INSTALL_PREFIX= OPENSSLDIR= /usr/local/ssl @@ -20,6 +20,7 @@ AR= ar r MD5_ASM_OBJ= CFLAGS= $(INCLUDES) $(CFLAG) +ASFLAGS= $(INCLUDES) $(ASFLAG) GENERAL=Makefile TEST=md5test.c |