d7ef1a441367fcb22a66f3087103fe6229216869
[openssl.git] / crypto / buffer / Makefile.ssl
1 #
2 # SSLeay/crypto/buffer/Makefile
3 #
4
5 DIR=    buffer
6 TOP=    ../..
7 CC=     cc
8 INCLUDES= -I.. -I../../include
9 CFLAG=-g
10 INSTALLTOP=/usr/local/ssl
11 MAKE=           make -f Makefile.ssl
12 MAKEDEPEND=     $(TOP)/util/domd $(TOP)
13 MAKEFILE=       Makefile.ssl
14 AR=             ar r
15
16 CFLAGS= $(INCLUDES) $(CFLAG)
17
18 ERR=buffer
19 ERRC=buf_err
20 GENERAL=Makefile
21 TEST=
22 APPS=
23
24 LIB=$(TOP)/libcrypto.a
25 LIBSRC= buffer.c $(ERRC).c
26 LIBOBJ= buffer.o $(ERRC).o
27
28 SRC= $(LIBSRC)
29
30 EXHEADER= buffer.h
31 HEADER= $(EXHEADER)
32
33 ALL=    $(GENERAL) $(SRC) $(HEADER)
34
35 top:
36         (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
37
38 all:    lib
39
40 lib:    $(LIBOBJ)
41         $(AR) $(LIB) $(LIBOBJ)
42         $(RANLIB) $(LIB)
43         @touch lib
44
45 files:
46         $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
47
48 links:
49         @$(TOP)/util/point.sh Makefile.ssl Makefile
50         @$(TOP)/util/mklink.sh ../../include/openssl $(EXHEADER)
51         @$(TOP)/util/mklink.sh ../../test $(TEST)
52         @$(TOP)/util/mklink.sh ../../apps $(APPS)
53
54 install:
55         @for i in $(EXHEADER) ; \
56         do  \
57         (cp $$i $(INSTALLTOP)/include/openssl/$$i; \
58         chmod 644 $(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) $(INCLUDES) $(PROGS) $(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 buf_err.o: ../../include/openssl/buffer.h ../../include/openssl/err.h
82 buffer.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
83 buffer.o: ../../include/openssl/crypto.h ../../include/openssl/e_os.h
84 buffer.o: ../../include/openssl/err.h ../../include/openssl/opensslv.h
85 buffer.o: ../../include/openssl/stack.h ../cryptlib.h