]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/buffer/Makefile.ssl
Tidy up CRYPTO_EX_DATA structures.
[thirdparty/openssl.git] / crypto / buffer / Makefile.ssl
CommitLineData
d02b48c6
RE
1#
2# SSLeay/crypto/buffer/Makefile
3#
4
5DIR= buffer
6TOP= ../..
7CC= cc
8INCLUDES= -I.. -I../../include
9CFLAG=-g
e5f3045f
BM
10INSTALL_PREFIX=
11OPENSSLDIR= /usr/local/ssl
d02b48c6
RE
12INSTALLTOP=/usr/local/ssl
13MAKE= make -f Makefile.ssl
8039257d 14MAKEDEPEND= $(TOP)/util/domd $(TOP)
d02b48c6
RE
15MAKEFILE= Makefile.ssl
16AR= ar r
17
18CFLAGS= $(INCLUDES) $(CFLAG)
19
d02b48c6
RE
20GENERAL=Makefile
21TEST=
22APPS=
23
24LIB=$(TOP)/libcrypto.a
73934800
DSH
25LIBSRC= buffer.c buf_err.c
26LIBOBJ= buffer.o buf_err.o
d02b48c6
RE
27
28SRC= $(LIBSRC)
29
30EXHEADER= buffer.h
31HEADER= $(EXHEADER)
32
33ALL= $(GENERAL) $(SRC) $(HEADER)
34
35top:
36 (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
37
38all: lib
39
40lib: $(LIBOBJ)
41 $(AR) $(LIB) $(LIBOBJ)
99aab161 42 $(RANLIB) $(LIB)
d02b48c6
RE
43 @touch lib
44
45files:
99aab161 46 $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
d02b48c6
RE
47
48links:
bb8f3c58 49 @$(TOP)/util/point.sh Makefile.ssl Makefile
1314c344
BM
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)
d02b48c6
RE
53
54install:
55 @for i in $(EXHEADER) ; \
56 do \
e5f3045f
BM
57 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
58 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
d02b48c6
RE
59 done;
60
61tags:
62 ctags $(SRC)
63
64tests:
65
66lint:
67 lint -DLINT $(INCLUDES) $(SRC)>fluff
68
69depend:
f5d7a031 70 $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC)
d02b48c6
RE
71
72dclean:
99aab161 73 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
d02b48c6
RE
74 mv -f Makefile.new $(MAKEFILE)
75
76clean:
bb8f3c58 77 rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
d02b48c6 78
d02b48c6 79# DO NOT DELETE THIS LINE -- make depend depends on it.
6242bb9c 80
bf57da07
BM
81buf_err.o: ../../include/openssl/buffer.h ../../include/openssl/err.h
82buffer.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
7e701817
BM
83buffer.o: ../../include/openssl/crypto.h ../../include/openssl/e_os.h
84buffer.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
d6847aed 85buffer.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
dd9d233e
DSH
86buffer.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
87buffer.o: ../cryptlib.h