diff options
author | djm <> | 2005-04-29 05:37:32 +0000 |
---|---|---|
committer | djm <> | 2005-04-29 05:37:32 +0000 |
commit | 411d389aff1d4ca3241d9d89edb4110c1cf05035 (patch) | |
tree | 26769b736e0df1e96e60b36db36c918dd42746be /src/lib/libcrypto/krb5 | |
parent | f958f59ed2b1b93fadf25a4c8bd7d1f3c655a229 (diff) | |
parent | 588543a0946f1dbf0f1dd5135f8f6447486dc183 (diff) | |
download | openbsd-411d389aff1d4ca3241d9d89edb4110c1cf05035.tar.gz openbsd-411d389aff1d4ca3241d9d89edb4110c1cf05035.tar.bz2 openbsd-411d389aff1d4ca3241d9d89edb4110c1cf05035.zip |
This commit was generated by cvs2git to track changes on a CVS vendor
branch.
Diffstat (limited to 'src/lib/libcrypto/krb5')
-rw-r--r-- | src/lib/libcrypto/krb5/Makefile | 88 |
1 files changed, 88 insertions, 0 deletions
diff --git a/src/lib/libcrypto/krb5/Makefile b/src/lib/libcrypto/krb5/Makefile new file mode 100644 index 0000000000..25cc695e8d --- /dev/null +++ b/src/lib/libcrypto/krb5/Makefile | |||
@@ -0,0 +1,88 @@ | |||
1 | # | ||
2 | # OpenSSL/krb5/Makefile | ||
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 | MAKEDEPPROG= makedepend | ||
14 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
15 | MAKEFILE= Makefile | ||
16 | AR= ar r | ||
17 | |||
18 | CFLAGS= $(INCLUDES) $(CFLAG) | ||
19 | |||
20 | GENERAL=Makefile README | ||
21 | TEST= | ||
22 | APPS= | ||
23 | |||
24 | LIB=$(TOP)/libcrypto.a | ||
25 | LIBSRC= krb5_asn.c | ||
26 | |||
27 | LIBOBJ= krb5_asn.o | ||
28 | |||
29 | SRC= $(LIBSRC) | ||
30 | |||
31 | EXHEADER= krb5_asn.h | ||
32 | HEADER= $(EXHEADER) | ||
33 | |||
34 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
35 | |||
36 | top: | ||
37 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
38 | |||
39 | all: lib | ||
40 | |||
41 | lib: $(LIBOBJ) | ||
42 | $(AR) $(LIB) $(LIBOBJ) | ||
43 | $(RANLIB) $(LIB) || echo Never mind. | ||
44 | @touch lib | ||
45 | |||
46 | files: | ||
47 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | ||
48 | |||
49 | links: | ||
50 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
51 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
52 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
53 | |||
54 | install: | ||
55 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | ||
56 | do \ | ||
57 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
58 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
59 | done; | ||
60 | |||
61 | tags: | ||
62 | ctags $(SRC) | ||
63 | |||
64 | tests: | ||
65 | |||
66 | lint: | ||
67 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
68 | |||
69 | depend: | ||
70 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(LIBSRC) | ||
71 | |||
72 | dclean: | ||
73 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
74 | mv -f Makefile.new $(MAKEFILE) | ||
75 | |||
76 | clean: | ||
77 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
78 | |||
79 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
80 | |||
81 | krb5_asn.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
82 | krb5_asn.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
83 | krb5_asn.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
84 | krb5_asn.o: ../../include/openssl/krb5_asn.h | ||
85 | krb5_asn.o: ../../include/openssl/opensslconf.h | ||
86 | krb5_asn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
87 | krb5_asn.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
88 | krb5_asn.o: ../../include/openssl/symhacks.h krb5_asn.c | ||