]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/comp/Makefile
Remove fipscanister build functionality from makefiles.
[thirdparty/openssl.git] / crypto / comp / Makefile
CommitLineData
dfeab068 1#
15ac9716 2# OpenSSL/crypto/comp/Makefile
dfeab068
RE
3#
4
5DIR= comp
6TOP= ../..
7CC= cc
41d2a336 8INCLUDES= -I.. -I$(TOP) -I../../include
dfeab068 9CFLAG=-g
42ba5d23 10MAKEFILE= Makefile
dfeab068
RE
11AR= ar r
12
13CFLAGS= $(INCLUDES) $(CFLAG)
14
dfeab068
RE
15GENERAL=Makefile
16TEST=
17APPS=
18
19LIB=$(TOP)/libcrypto.a
d6a89fcf 20LIBSRC= comp_lib.c comp_err.c \
dfeab068
RE
21 c_rle.c c_zlib.c
22
d6a89fcf 23LIBOBJ= comp_lib.o comp_err.o \
dfeab068
RE
24 c_rle.o c_zlib.o
25
26SRC= $(LIBSRC)
27
28EXHEADER= comp.h
29HEADER= $(EXHEADER)
30
31ALL= $(GENERAL) $(SRC) $(HEADER)
32
33top:
34 (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
35
36all: lib
37
38lib: $(LIBOBJ)
f072785e 39 $(AR) $(LIB) $(LIBOBJ)
4e20b1a6 40 $(RANLIB) $(LIB) || echo Never mind.
dfeab068
RE
41 @touch lib
42
43files:
42ba5d23 44 $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
dfeab068
RE
45
46links:
1314c344
BM
47 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
48 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
49 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
dfeab068
RE
50
51install:
81a86fcf 52 @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
a2ac429d 53 @headerlist="$(EXHEADER)"; for i in $$headerlist ; \
dfeab068 54 do \
e5f3045f
BM
55 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
56 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
dfeab068
RE
57 done;
58
59tags:
60 ctags $(SRC)
61
62tests:
63
64lint:
65 lint -DLINT $(INCLUDES) $(SRC)>fluff
66
67depend:
ce92b6eb 68 @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
001ab3ab 69 $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(LIBSRC)
dfeab068
RE
70
71dclean:
99aab161 72 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
dfeab068
RE
73 mv -f Makefile.new $(MAKEFILE)
74
75clean:
bb8f3c58 76 rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
dfeab068 77
dfeab068 78# DO NOT DELETE THIS LINE -- make depend depends on it.
6242bb9c 79
d88a26c4 80c_rle.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
9c52d2cc
GT
81c_rle.o: ../../include/openssl/comp.h ../../include/openssl/crypto.h
82c_rle.o: ../../include/openssl/e_os2.h ../../include/openssl/obj_mac.h
83c_rle.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
84c_rle.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
85c_rle.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
86c_rle.o: ../../include/openssl/symhacks.h c_rle.c
d88a26c4 87c_zlib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
9c52d2cc 88c_zlib.o: ../../include/openssl/comp.h ../../include/openssl/crypto.h
a7201e9a
RL
89c_zlib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
90c_zlib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
9c52d2cc
GT
91c_zlib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
92c_zlib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
93c_zlib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
94c_zlib.o: ../../include/openssl/symhacks.h c_zlib.c
138d8ab0
RL
95comp_err.o: ../../include/openssl/bio.h ../../include/openssl/comp.h
96comp_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
97comp_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
98comp_err.o: ../../include/openssl/opensslconf.h
c57bc2dc
GT
99comp_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
100comp_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
101comp_err.o: ../../include/openssl/symhacks.h comp_err.c
d88a26c4 102comp_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
9c52d2cc
GT
103comp_lib.o: ../../include/openssl/comp.h ../../include/openssl/crypto.h
104comp_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/obj_mac.h
105comp_lib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
f8000b93
RL
106comp_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
107comp_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
108comp_lib.o: ../../include/openssl/symhacks.h comp_lib.c