0d6306c47a2adfedce254c40998bd6b63af28785
[openssl.git] / crypto / modes / Makefile
1 #
2 # OpenSSL/crypto/modes/Makefile
3 #
4
5 DIR=    modes
6 TOP=    ../..
7 CC=     cc
8 INCLUDES= -I.. -I$(TOP) -I../../include
9 CFLAG=-g
10 MAKEFILE=       Makefile
11 AR=             ar r
12
13 MODES_ASM_OBJ=
14
15 CFLAGS= $(INCLUDES) $(CFLAG)
16 ASFLAGS= $(INCLUDES) $(ASFLAG)
17 AFLAGS= $(ASFLAGS)
18
19 GENERAL=Makefile
20 TEST=
21 APPS=
22
23 LIB=$(TOP)/libcrypto.a
24 LIBSRC= cbc128.c ctr128.c cts128.c cfb128.c ofb128.c gcm128.c
25 LIBOBJ= cbc128.o ctr128.o cts128.o cfb128.o ofb128.o gcm128.o \
26         $(MODES_ASM_OBJ)
27
28 SRC= $(LIBSRC)
29
30 #EXHEADER= store.h str_compat.h
31 EXHEADER= modes.h
32 HEADER= $(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 aes-ia64.s:     asm/ghash-ia64.pl
47         $(PERL) asm/ghash-ia64.pl $@ $(CFLAGS)
48 ghash-x86.s:    asm/ghash-x86.pl
49         $(PERL) asm/ghash-x86.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
50 ghash-x86_64.s: asm/ghash-x86_64.pl
51         $(PERL) asm/ghash-x86_64.pl $(PERLASM_SCHEME) > $@
52 ghash-sparcv9.s:        asm/ghash-sparcv9.pl
53         $(PERL) asm/ghash-sparcv9.pl $(CFLAGS) > $@
54 ghash-alpha.s:  asm/ghash-alpha.pl
55         $(PERL) $< | $(CC) -E - | tee $@ > /dev/null
56 ghash-parisc.s: asm/ghash-parisc.pl
57         $($PERL) asm/ghash-parisc.pl $(PERLASM_SCHEME) $@
58 # GNU make "catch all"
59 ghash-%.s:      asm/ghash-%.pl; $(PERL) $< $(PERLASM_SCHEME) $(CFLAGS) > $@
60
61 files:
62         $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
63
64 links:
65         @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
66         @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
67         @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
68
69 install:
70         @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
71         @headerlist="$(EXHEADER)"; for i in $$headerlist; \
72         do  \
73         (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
74         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
75         done;
76
77 tags:
78         ctags $(SRC)
79
80 tests:
81
82 lint:
83         lint -DLINT $(INCLUDES) $(SRC)>fluff
84
85 depend:
86         @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
87         $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
88
89 dclean:
90         $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
91         mv -f Makefile.new $(MAKEFILE)
92
93 clean:
94         rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
95
96 # DO NOT DELETE THIS LINE -- make depend depends on it.
97
98 cbc128.o: ../../include/openssl/modes.h cbc128.c modes_lcl.h
99 cfb128.o: ../../include/openssl/modes.h cfb128.c modes_lcl.h
100 ctr128.o: ../../include/openssl/modes.h ctr128.c modes_lcl.h
101 cts128.o: ../../include/openssl/modes.h cts128.c modes_lcl.h
102 gcm128.o: ../../include/openssl/modes.h gcm128.c modes_lcl.h
103 ofb128.o: ../../include/openssl/modes.h modes_lcl.h ofb128.c