]> git.ipfire.org Git - thirdparty/openssl.git/blob - crypto/rsa/Makefile.in
Move Makefiles to Makefile.in
[thirdparty/openssl.git] / crypto / rsa / Makefile.in
1 #
2 # OpenSSL/crypto/rsa/Makefile
3 #
4
5 DIR= rsa
6 TOP= ../..
7 CC= cc
8 INCLUDES= -I.. -I$(TOP) -I../../include
9 CFLAG=-g
10 MAKEFILE= Makefile
11 AR= ar r
12
13 CFLAGS= $(INCLUDES) $(CFLAG)
14
15 GENERAL=Makefile
16
17 LIB=$(TOP)/libcrypto.a
18 LIBSRC= rsa_ossl.c rsa_gen.c rsa_lib.c rsa_sign.c rsa_saos.c rsa_err.c \
19 rsa_pk1.c rsa_ssl.c rsa_none.c rsa_oaep.c rsa_chk.c rsa_null.c \
20 rsa_pss.c rsa_x931.c rsa_asn1.c rsa_depr.c rsa_ameth.c rsa_prn.c \
21 rsa_pmeth.c rsa_crpt.c rsa_x931g.c
22 LIBOBJ= rsa_ossl.o rsa_gen.o rsa_lib.o rsa_sign.o rsa_saos.o rsa_err.o \
23 rsa_pk1.o rsa_ssl.o rsa_none.o rsa_oaep.o rsa_chk.o rsa_null.o \
24 rsa_pss.o rsa_x931.o rsa_asn1.o rsa_depr.o rsa_ameth.o rsa_prn.o \
25 rsa_pmeth.o rsa_crpt.o rsa_x931g.o
26
27 SRC= $(LIBSRC)
28
29 HEADER=
30
31 ALL= $(GENERAL) $(SRC) $(HEADER)
32
33 top:
34 (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
35
36 all: lib
37
38 lib: $(LIBOBJ)
39 $(AR) $(LIB) $(LIBOBJ)
40 $(RANLIB) $(LIB) || echo Never mind.
41 @touch lib
42
43 files:
44 $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
45
46 tags:
47 ctags $(SRC)
48
49 tests:
50
51 lint:
52 lint -DLINT $(INCLUDES) $(SRC)>fluff
53
54 update: depend
55
56 depend:
57 @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
58 $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
59
60 dclean:
61 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
62 mv -f Makefile.new $(MAKEFILE)
63
64 clean:
65 rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
66
67 # DO NOT DELETE THIS LINE -- make depend depends on it.