remove useless instruction
[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 INSTALL_PREFIX=
11 OPENSSLDIR=     /usr/local/ssl
12 INSTALLTOP=/usr/local/ssl
13 MAKE=           make -f Makefile.ssl
14 MAKEDEPEND=     $(TOP)/util/domd $(TOP)
15 MAKEFILE=       Makefile.ssl
16 AR=             ar r
17
18 CFLAGS= $(INCLUDES) $(CFLAG)
19
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         @echo You may get an error following this line.  Please ignore.
46         - $(RANLIB) $(LIB)
47         @touch lib
48
49 files:
50         $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
51
52 links:
53         @$(TOP)/util/point.sh Makefile.ssl Makefile
54         @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
55         @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
56         @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
57
58 install:
59         @for i in $(EXHEADER) ; \
60         do  \
61         (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
62         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
63         done;
64
65 tags:
66         ctags $(SRC)
67
68 tests:
69
70 lint:
71         lint -DLINT $(INCLUDES) $(SRC)>fluff
72
73 depend:
74         $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(LIBSRC)
75
76 dclean:
77         $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
78         mv -f Makefile.new $(MAKEFILE)
79
80 clean:
81         rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
82
83 # DO NOT DELETE THIS LINE -- make depend depends on it.
84
85 c_rle.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
86 c_rle.o: ../../include/openssl/bn.h ../../include/openssl/comp.h
87 c_rle.o: ../../include/openssl/crypto.h ../../include/openssl/obj_mac.h
88 c_rle.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
89 c_rle.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
90 c_rle.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
91 c_zlib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
92 c_zlib.o: ../../include/openssl/bn.h ../../include/openssl/comp.h
93 c_zlib.o: ../../include/openssl/crypto.h ../../include/openssl/obj_mac.h
94 c_zlib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
95 c_zlib.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
96 c_zlib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
97 comp_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
98 comp_lib.o: ../../include/openssl/bn.h ../../include/openssl/comp.h
99 comp_lib.o: ../../include/openssl/crypto.h ../../include/openssl/obj_mac.h
100 comp_lib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
101 comp_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
102 comp_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h