~ubuntu-branches/ubuntu/maverick/openssl/maverick

« back to all changes in this revision

Viewing changes to crypto/krb5/Makefile.ssl

  • Committer: Bazaar Package Importer
  • Author(s): Christoph Martin
  • Date: 2004-12-16 18:41:29 UTC
  • mto: (11.1.1 lenny)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20041216184129-z7xjkul57mh1jiha
Tags: upstream-0.9.7e
ImportĀ upstreamĀ versionĀ 0.9.7e

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#
2
 
# OpenSSL/krb5/Makefile.ssl
3
 
#
4
 
 
5
 
DIR=    krb5
6
 
TOP=    ../..
7
 
CC=     cc
8
 
INCLUDES= -I.. -I$(TOP) -I../../include
9
 
CFLAG=-g
10
 
INSTALL_PREFIX=
11
 
OPENSSLDIR=     /usr/local/ssl
12
 
INSTALLTOP=/usr/local/ssl
13
 
MAKE=           make -f Makefile.ssl
14
 
MAKEDEPPROG=    makedepend
15
 
MAKEDEPEND=     $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
16
 
MAKEFILE=       Makefile.ssl
17
 
AR=             ar r
18
 
 
19
 
CFLAGS= $(INCLUDES) $(CFLAG)
20
 
 
21
 
GENERAL=Makefile README
22
 
TEST=
23
 
APPS=
24
 
 
25
 
LIB=$(TOP)/libcrypto.a
26
 
LIBSRC= krb5_asn.c
27
 
 
28
 
LIBOBJ= krb5_asn.o
29
 
 
30
 
SRC= $(LIBSRC)
31
 
 
32
 
EXHEADER= krb5_asn.h
33
 
HEADER= $(EXHEADER)
34
 
 
35
 
ALL=    $(GENERAL) $(SRC) $(HEADER)
36
 
 
37
 
top:
38
 
        (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
39
 
 
40
 
all:    lib
41
 
 
42
 
lib:    $(LIBOBJ)
43
 
        $(AR) $(LIB) $(LIBOBJ)
44
 
        $(RANLIB) $(LIB) || echo Never mind.
45
 
        @touch lib
46
 
 
47
 
files:
48
 
        $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
49
 
 
50
 
links:
51
 
        @sh $(TOP)/util/point.sh Makefile.ssl Makefile ;
52
 
        @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
53
 
        @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
54
 
        @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
55
 
 
56
 
install:
57
 
        @for i in $(EXHEADER) ; \
58
 
        do  \
59
 
        (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
60
 
        chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
61
 
        done;
62
 
 
63
 
tags:
64
 
        ctags $(SRC)
65
 
 
66
 
tests:
67
 
 
68
 
lint:
69
 
        lint -DLINT $(INCLUDES) $(SRC)>fluff
70
 
 
71
 
depend:
72
 
        $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(LIBSRC)
73
 
 
74
 
dclean:
75
 
        $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
76
 
        mv -f Makefile.new $(MAKEFILE)
77
 
 
78
 
clean:
79
 
        rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
80
 
 
81
 
# DO NOT DELETE THIS LINE -- make depend depends on it.
82
 
 
83
 
krb5_asn.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
84
 
krb5_asn.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
85
 
krb5_asn.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
86
 
krb5_asn.o: ../../include/openssl/krb5_asn.h
87
 
krb5_asn.o: ../../include/openssl/opensslconf.h
88
 
krb5_asn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
89
 
krb5_asn.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
90
 
krb5_asn.o: ../../include/openssl/symhacks.h krb5_asn.c