Blow away Makefile.ssl.
[openssl.git] / crypto / aes / Makefile
1 #
2 # crypto/aes/Makefile
3 #
4
5 DIR=    aes
6 TOP=    ../..
7 CC=     cc
8 CPP=    $(CC) -E
9 INCLUDES=
10 CFLAG=-g
11 INSTALL_PREFIX=
12 OPENSSLDIR=     /usr/local/ssl
13 INSTALLTOP=     /usr/local/ssl
14 MAKE=           make
15 MAKEDEPPROG=    makedepend
16 MAKEDEPEND=     $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
17 MAKEFILE=       Makefile
18 AR=             ar r
19
20 AES_ASM_OBJ=aes_core.o aes_cbc.o
21
22 CFLAGS= $(INCLUDES) $(CFLAG)
23 ASFLAGS= $(INCLUDES) $(ASFLAG)
24 AFLAGS= $(ASFLAGS)
25
26 GENERAL=Makefile
27 #TEST=aestest.c
28 TEST=
29 APPS=
30
31 LIB=$(TOP)/libcrypto.a
32 LIBSRC=aes_core.c aes_misc.c aes_ecb.c aes_cbc.c aes_cfb.c aes_ofb.c aes_ctr.c
33 LIBOBJ=aes_misc.o aes_ecb.o aes_cfb.o aes_ofb.o aes_ctr.o $(AES_ASM_OBJ)
34
35 SRC= $(LIBSRC)
36
37 EXHEADER= aes.h
38 HEADER= aes_locl.h $(EXHEADER)
39
40 ALL=    $(GENERAL) $(SRC) $(HEADER)
41
42 top:
43         (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
44
45 all:    lib
46
47 lib:    $(LIBOBJ)
48         $(AR) $(LIB) $(LIBOBJ)
49         $(RANLIB) $(LIB) || echo Never mind.
50         @touch lib
51
52 $(LIBOBJ): $(LIBSRC)
53
54 aes-ia64.s: asm/aes-ia64.S
55         $(CC) $(CFLAGS) -E asm/aes-ia64.S > $@
56
57 ax86-elf.s: asm/aes-586.pl ../perlasm/x86asm.pl
58         (cd asm; $(PERL) aes-586.pl elf $(CFLAGS) $(PROCESSOR) > ../$@)
59 ax86-cof.s: asm/aes-586.pl ../perlasm/x86asm.pl
60         (cd asm; $(PERL) aes-586.pl coff $(CFLAGS) $(PROCESSOR) > ../$@)
61 ax86-out.s: asm/aes-586.pl ../perlasm/x86asm.pl
62         (cd asm; $(PERL) aes-586.pl a.out $(CFLAGS) $(PROCESSOR) > ../$@)
63
64 files:
65         $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
66
67 links:
68         @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
69         @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
70         @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
71
72 install: installs
73
74 installs:
75         @headerlist="$(EXHEADER)"; for i in $$headerlist ; \
76         do  \
77         (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
78         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
79         done;
80
81 tags:
82         ctags $(SRC)
83
84 tests:
85
86 lint:
87         lint -DLINT $(INCLUDES) $(SRC)>fluff
88
89 depend:
90         $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
91
92 dclean:
93         $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
94         mv -f Makefile.new $(MAKEFILE)
95
96 clean:
97         rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
98
99 # DO NOT DELETE THIS LINE -- make depend depends on it.
100
101 aes_cbc.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h
102 aes_cbc.o: ../../include/openssl/opensslconf.h aes_cbc.c aes_locl.h
103 aes_cfb.o: ../../e_os.h ../../include/openssl/aes.h
104 aes_cfb.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
105 aes_cfb.o: aes_cfb.c aes_locl.h
106 aes_core.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h
107 aes_core.o: ../../include/openssl/opensslconf.h aes_core.c aes_locl.h
108 aes_ctr.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h
109 aes_ctr.o: ../../include/openssl/opensslconf.h aes_ctr.c aes_locl.h
110 aes_ecb.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h
111 aes_ecb.o: ../../include/openssl/opensslconf.h aes_ecb.c aes_locl.h
112 aes_misc.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h
113 aes_misc.o: ../../include/openssl/opensslconf.h
114 aes_misc.o: ../../include/openssl/opensslv.h aes_locl.h aes_misc.c
115 aes_ofb.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h
116 aes_ofb.o: ../../include/openssl/opensslconf.h aes_locl.h aes_ofb.c