Change AR to ARX to allow exclusion of fips object modules
[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         $(ARX) $(LIB) $(LIBOBJ)
43         $(RANLIB) $(LIB) || echo Never mind.
44         @touch lib
45
46 ghash-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
59 # GNU make "catch all"
60 ghash-%.s:      asm/ghash-%.pl; $(PERL) $< $(PERLASM_SCHEME) $@
61
62 files:
63         $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
64
65 links:
66         @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
67         @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
68         @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
69
70 install:
71         @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
72         @headerlist="$(EXHEADER)"; for i in $$headerlist; \
73         do  \
74         (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
75         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
76         done;
77
78 tags:
79         ctags $(SRC)
80
81 tests:
82
83 lint:
84         lint -DLINT $(INCLUDES) $(SRC)>fluff
85
86 depend:
87         @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
88         $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
89
90 dclean:
91         $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
92         mv -f Makefile.new $(MAKEFILE)
93
94 clean:
95         rm -f *.s *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
96
97 # DO NOT DELETE THIS LINE -- make depend depends on it.
98
99 cbc128.o: ../../include/openssl/modes.h cbc128.c modes_lcl.h
100 cfb128.o: ../../include/openssl/modes.h cfb128.c modes_lcl.h
101 ctr128.o: ../../include/openssl/modes.h ctr128.c modes_lcl.h
102 cts128.o: ../../include/openssl/modes.h cts128.c modes_lcl.h
103 gcm128.o: ../../include/openssl/modes.h gcm128.c modes_lcl.h
104 ofb128.o: ../../include/openssl/modes.h modes_lcl.h ofb128.c