Pedantic polish to aes-586.pl:-)
[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 MAKEFILE=       Makefile
12 AR=             ar r
13
14 AES_ASM_OBJ=aes_core.o aes_cbc.o
15
16 CFLAGS= $(INCLUDES) $(CFLAG)
17 ASFLAGS= $(INCLUDES) $(ASFLAG)
18 AFLAGS= $(ASFLAGS)
19
20 GENERAL=Makefile
21 #TEST=aestest.c
22 TEST=
23 APPS=
24
25 LIB=$(TOP)/libcrypto.a
26 LIBSRC=aes_core.c aes_misc.c aes_ecb.c aes_cbc.c aes_cfb.c aes_ofb.c aes_ctr.c
27 LIBOBJ=aes_misc.o aes_ecb.o aes_cfb.o aes_ofb.o aes_ctr.o $(AES_ASM_OBJ)
28
29 SRC= $(LIBSRC)
30
31 EXHEADER= aes.h
32 HEADER= aes_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         $(RANLIB) $(LIB) || echo Never mind.
44         @touch lib
45
46 $(LIBOBJ): $(LIBSRC)
47
48 aes-ia64.s: asm/aes-ia64.S
49         $(CC) $(CFLAGS) -E asm/aes-ia64.S > $@
50
51 ax86-elf.s: asm/aes-586.pl ../perlasm/x86asm.pl
52         (cd asm; $(PERL) aes-586.pl elf $(CFLAGS) $(PROCESSOR) > ../$@)
53 ax86-cof.s: asm/aes-586.pl ../perlasm/x86asm.pl
54         (cd asm; $(PERL) aes-586.pl coff $(CFLAGS) $(PROCESSOR) > ../$@)
55 ax86-out.s: asm/aes-586.pl ../perlasm/x86asm.pl
56         (cd asm; $(PERL) aes-586.pl a.out $(CFLAGS) $(PROCESSOR) > ../$@)
57
58 files:
59         $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
60
61 links:
62         @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
63         @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
64         @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
65
66 install:
67         @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
68         @headerlist="$(EXHEADER)"; for i in $$headerlist ; \
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         @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
84         $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
85
86 dclean:
87         $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
88         mv -f Makefile.new $(MAKEFILE)
89
90 clean:
91         rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
92
93 # DO NOT DELETE THIS LINE -- make depend depends on it.
94
95 aes_cbc.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h
96 aes_cbc.o: ../../include/openssl/opensslconf.h aes_cbc.c aes_locl.h
97 aes_cfb.o: ../../e_os.h ../../include/openssl/aes.h
98 aes_cfb.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
99 aes_cfb.o: aes_cfb.c aes_locl.h
100 aes_core.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h
101 aes_core.o: ../../include/openssl/opensslconf.h aes_core.c aes_locl.h
102 aes_ctr.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h
103 aes_ctr.o: ../../include/openssl/opensslconf.h aes_ctr.c aes_locl.h
104 aes_ecb.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h
105 aes_ecb.o: ../../include/openssl/opensslconf.h aes_ecb.c aes_locl.h
106 aes_misc.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h
107 aes_misc.o: ../../include/openssl/opensslconf.h
108 aes_misc.o: ../../include/openssl/opensslv.h aes_locl.h aes_misc.c
109 aes_ofb.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h
110 aes_ofb.o: ../../include/openssl/opensslconf.h aes_locl.h aes_ofb.c