Make all configuration macros available for application by making
[openssl.git] / crypto / rc2 / Makefile.ssl
1 #
2 # SSLeay/crypto/rc2/Makefile
3 #
4
5 DIR=    rc2
6 TOP=    ../..
7 CC=     cc
8 INCLUDES=
9 CFLAG=-g
10 INSTALL_PREFIX=
11 OPENSSLDIR=     /usr/local/ssl
12 INSTALLTOP=/usr/local/ssl
13 MAKE=           make -f Makefile.ssl
14 MAKEDEPPROG=    makedepend
15 MAKEDEPEND=     $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
16 MAKEFILE=       Makefile.ssl
17 AR=             ar r
18
19 CFLAGS= $(INCLUDES) $(CFLAG)
20
21 GENERAL=Makefile
22 TEST=rc2test.c
23 APPS=
24
25 LIB=$(TOP)/libcrypto.a
26 LIBSRC=rc2_ecb.c rc2_skey.c rc2_cbc.c rc2cfb64.c rc2ofb64.c
27 LIBOBJ=rc2_ecb.o rc2_skey.o rc2_cbc.o rc2cfb64.o rc2ofb64.o
28
29 SRC= $(LIBSRC)
30
31 EXHEADER= rc2.h
32 HEADER= rc2_locl.h $(EXHEADER)
33
34 ALL=    $(GENERAL) $(SRC) $(HEADER)
35
36 top:
37         (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
38
39 all:    lib
40
41 lib:    $(LIBOBJ)
42         $(AR) $(LIB) $(LIBOBJ)
43         @echo You may get an error following this line.  Please ignore.
44         - $(RANLIB) $(LIB)
45         @touch lib
46
47 files:
48         $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
49
50 links:
51         @$(TOP)/util/point.sh Makefile.ssl Makefile
52         @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
53         @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
54         @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
55
56 install:
57         @for i in $(EXHEADER) ; \
58         do  \
59         (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
60         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
61         done;
62
63 tags:
64         ctags $(SRC)
65
66 tests:
67
68 lint:
69         lint -DLINT $(INCLUDES) $(SRC)>fluff
70
71 depend:
72         $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC)
73
74 dclean:
75         $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
76         mv -f Makefile.new $(MAKEFILE)
77
78 clean:
79         rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
80
81 # DO NOT DELETE THIS LINE -- make depend depends on it.
82
83 rc2_cbc.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc2.h
84 rc2_cbc.o: rc2_cbc.c rc2_locl.h
85 rc2_ecb.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
86 rc2_ecb.o: ../../include/openssl/rc2.h rc2_ecb.c rc2_locl.h
87 rc2_skey.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc2.h
88 rc2_skey.o: rc2_locl.h rc2_skey.c
89 rc2cfb64.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc2.h
90 rc2cfb64.o: rc2_locl.h rc2cfb64.c
91 rc2ofb64.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc2.h
92 rc2ofb64.o: rc2_locl.h rc2ofb64.c