~ubuntu-branches/ubuntu/hardy/openssl/hardy-security

« back to all changes in this revision

Viewing changes to crypto/ripemd/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Kurt Roeckx
  • Date: 2005-12-13 21:37:42 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051213213742-7em5nrw5c7ceegyd
Tags: 0.9.8a-5
Stop ssh from crashing randomly on sparc (Closes: #335912)
Patch from upstream cvs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
CPP=    $(CC) -E
9
9
INCLUDES=
10
10
CFLAG=-g
11
 
INSTALL_PREFIX=
12
 
OPENSSLDIR=     /usr/local/ssl
13
 
INSTALLTOP=/usr/local/ssl
14
 
MAKEDEPPROG=    makedepend
15
 
MAKEDEPEND=     $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
16
11
MAKEFILE=       Makefile
17
12
AR=             ar r
18
13
 
20
15
 
21
16
CFLAGS= $(INCLUDES) $(CFLAG)
22
17
ASFLAGS= $(INCLUDES) $(ASFLAG)
 
18
AFLAGS= $(ASFLAGS)
23
19
 
24
20
GENERAL=Makefile
25
21
TEST=rmdtest.c
46
42
        $(RANLIB) $(LIB) || echo Never mind.
47
43
        @touch lib
48
44
 
49
 
# elf
50
 
asm/rm86-elf.s: asm/rmd-586.pl ../perlasm/x86asm.pl
51
 
        (cd asm; $(PERL) rmd-586.pl elf $(CFLAGS) > rm86-elf.s)
52
 
 
 
45
# ELF
 
46
rm86-elf.s: asm/rmd-586.pl ../perlasm/x86asm.pl
 
47
        (cd asm; $(PERL) rmd-586.pl elf $(CFLAGS) > ../$@)
 
48
# COFF
 
49
rm86-cof.s: asm/rmd-586.pl ../perlasm/x86asm.pl
 
50
        (cd asm; $(PERL) rmd-586.pl coff $(CFLAGS) > ../$@)
53
51
# a.out
54
 
asm/rm86-out.o: asm/rm86unix.cpp
55
 
        $(CPP) -DOUT asm/rm86unix.cpp | as -o asm/rm86-out.o
56
 
 
57
 
# bsdi
58
 
asm/rm86bsdi.o: asm/rm86unix.cpp
59
 
        $(CPP) -DBSDI asm/rm86unix.cpp | sed 's/ :/:/' | as -o asm/rm86bsdi.o
60
 
 
61
 
asm/rm86unix.cpp: asm/rmd-586.pl ../perlasm/x86asm.pl
62
 
        (cd asm; $(PERL) rmd-586.pl cpp >rm86unix.cpp)
 
52
rm86-out.s: asm/rmd-586.pl ../perlasm/x86asm.pl
 
53
        (cd asm; $(PERL) rmd-586.pl a.out $(CFLAGS) > ../$@)
63
54
 
64
55
files:
65
56
        $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
70
61
        @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
71
62
 
72
63
install:
73
 
        @for i in $(EXHEADER) ; \
 
64
        @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
 
65
        @headerlist="$(EXHEADER)"; for i in $$headerlist ; \
74
66
        do  \
75
67
        (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
76
68
        chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
85
77
        lint -DLINT $(INCLUDES) $(SRC)>fluff
86
78
 
87
79
depend:
 
80
        @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
88
81
        $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
89
82
 
90
83
dclean:
92
85
        mv -f Makefile.new $(MAKEFILE)
93
86
 
94
87
clean:
95
 
        rm -f asm/rm86unix.cpp asm/*-elf.* *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
 
88
        rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
96
89
 
97
90
# DO NOT DELETE THIS LINE -- make depend depends on it.
98
91
 
99
 
rmd_dgst.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h
100
 
rmd_dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
101
 
rmd_dgst.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h
102
 
rmd_dgst.o: ../../include/openssl/opensslconf.h
 
92
rmd_dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
103
93
rmd_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/ripemd.h
104
 
rmd_dgst.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
105
 
rmd_dgst.o: ../../include/openssl/symhacks.h ../md32_common.h rmd_dgst.c
106
 
rmd_dgst.o: rmd_locl.h rmdconst.h
 
94
rmd_dgst.o: ../md32_common.h rmd_dgst.c rmd_locl.h rmdconst.h
107
95
rmd_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
108
96
rmd_one.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
109
 
rmd_one.o: ../../include/openssl/ripemd.h ../../include/openssl/safestack.h
110
 
rmd_one.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
111
 
rmd_one.o: rmd_one.c
 
97
rmd_one.o: ../../include/openssl/ossl_typ.h ../../include/openssl/ripemd.h
 
98
rmd_one.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
 
99
rmd_one.o: ../../include/openssl/symhacks.h rmd_one.c