Separate DSA functionality from ASN.1 encoding.
[openssl.git] / crypto / comp / Makefile.ssl
1 #
2 # SSLeay/crypto/comp/Makefile
3 #
4
5 DIR=    comp
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=comp
19 ERRC=comp_err
20 GENERAL=Makefile
21 TEST=
22 APPS=
23
24 LIB=$(TOP)/libcrypto.a
25 LIBSRC= comp_lib.c \
26         c_rle.c c_zlib.c
27
28 LIBOBJ= comp_lib.o \
29         c_rle.o c_zlib.o
30
31 SRC= $(LIBSRC)
32
33 EXHEADER= comp.h
34 HEADER= $(EXHEADER)
35
36 ALL=    $(GENERAL) $(SRC) $(HEADER)
37
38 top:
39         (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
40
41 all:    lib
42
43 lib:    $(LIBOBJ)
44         $(AR) $(LIB) $(LIBOBJ)
45         $(RANLIB) $(LIB)
46         @touch lib
47
48 files:
49         $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
50
51 links:
52         @$(TOP)/util/point.sh Makefile.ssl Makefile
53         @$(TOP)/util/mklink.sh ../../include $(EXHEADER)
54         @$(TOP)/util/mklink.sh ../../test $(TEST)
55         @$(TOP)/util/mklink.sh ../../apps $(APPS)
56
57 install:
58         @for i in $(EXHEADER) ; \
59         do  \
60         (cp $$i $(INSTALLTOP)/include/$$i; \
61         chmod 644 $(INSTALLTOP)/include/$$i ); \
62         done;
63
64 tags:
65         ctags $(SRC)
66
67 tests:
68
69 lint:
70         lint -DLINT $(INCLUDES) $(SRC)>fluff
71
72 depend:
73         $(MAKEDEPEND) $(INCLUDES) $(LIBSRC)
74
75 dclean:
76         $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
77         mv -f Makefile.new $(MAKEFILE)
78
79 clean:
80         rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
81
82 # This is a dummy to create comp.err: remove if we add any real errors to this
83 # stuff.
84
85 comp.err:
86         touch comp.err
87
88 errors: $(ERRC).c
89
90 $(ERRC).c: $(ERR).err
91         $(PERL) $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h
92         $(PERL) ../err/err_genc.pl -s $(ERR).h $(ERRC).c
93
94 # DO NOT DELETE THIS LINE -- make depend depends on it.
95
96 c_rle.o: ../../include/asn1.h ../../include/bio.h ../../include/bn.h
97 c_rle.o: ../../include/crypto.h ../../include/objects.h
98 c_rle.o: ../../include/opensslv.h ../../include/stack.h comp.h
99 c_zlib.o: ../../include/asn1.h ../../include/bio.h ../../include/bn.h
100 c_zlib.o: ../../include/crypto.h ../../include/objects.h
101 c_zlib.o: ../../include/opensslv.h ../../include/stack.h comp.h
102 comp_lib.o: ../../include/asn1.h ../../include/bio.h ../../include/bn.h
103 comp_lib.o: ../../include/crypto.h ../../include/objects.h
104 comp_lib.o: ../../include/opensslv.h ../../include/stack.h comp.h