Blow away Makefile.ssl.
[openssl.git] / crypto / idea / Makefile
1 #
2 # SSLeay/crypto/idea/Makefile
3 #
4
5 DIR=    idea
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
14 MAKEDEPPROG=    makedepend
15 MAKEDEPEND=     $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
16 MAKEFILE=       Makefile
17 AR=             ar r
18
19 CFLAGS= $(INCLUDES) $(CFLAG)
20
21 GENERAL=Makefile
22 TEST=ideatest.c
23 APPS=
24
25 LIB=$(TOP)/libcrypto.a
26 LIBSRC=i_cbc.c i_cfb64.c i_ofb64.c i_ecb.c i_skey.c
27 LIBOBJ=i_cbc.o i_cfb64.o i_ofb64.o i_ecb.o i_skey.o
28
29 SRC= $(LIBSRC)
30
31 EXHEADER= idea.h
32 HEADER= idea_lcl.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         $(RANLIB) $(LIB) || echo Never mind.
44         @touch lib
45
46 files:
47         $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
48
49 links:
50         @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
51         @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
52         @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
53
54 install:
55         @headerlist="$(EXHEADER)"; for i in $$headerlist ; \
56         do  \
57         (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
58         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
59         done;
60
61 tags:
62         ctags $(SRC)
63
64 tests:
65
66 lint:
67         lint -DLINT $(INCLUDES) $(SRC)>fluff
68
69 depend:
70         $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
71
72 dclean:
73         $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
74         mv -f Makefile.new $(MAKEFILE)
75
76 clean:
77         rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
78
79 # DO NOT DELETE THIS LINE -- make depend depends on it.
80
81 i_cbc.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h
82 i_cbc.o: i_cbc.c idea_lcl.h
83 i_cfb64.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h
84 i_cfb64.o: i_cfb64.c idea_lcl.h
85 i_ecb.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h
86 i_ecb.o: ../../include/openssl/opensslv.h i_ecb.c idea_lcl.h
87 i_ofb64.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h
88 i_ofb64.o: i_ofb64.c idea_lcl.h
89 i_skey.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h
90 i_skey.o: i_skey.c idea_lcl.h