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