c0120a845af5fed71e3ae9a7d5eb9e2fcc7604bf
[openssl.git] / crypto / whrlpool / Makefile
1 #
2 # crypto/whrlpool/Makefile
3 #
4
5 DIR=    whrlpool
6 TOP=    ../..
7 CC=     cc
8 CPP=    $(CC) -E
9 INCLUDES=
10 CFLAG=-g
11 MAKEFILE=       Makefile
12 AR=             ar r
13
14 WP_ASM_OBJ=wp_block.o
15
16 CFLAGS= $(INCLUDES) $(CFLAG)
17 ASFLAGS= $(INCLUDES) $(ASFLAG)
18 AFLAGS= $(ASFLAGS)
19
20 GENERAL=Makefile
21 TEST=wp_test.c
22 APPS=
23
24 LIB=$(TOP)/libcrypto.a
25 LIBSRC=wp_dgst.c wp_block.c
26 LIBOBJ=wp_dgst.o $(WP_ASM_OBJ)
27
28 SRC= $(LIBSRC)
29
30 EXHEADER= whrlpool.h
31 HEADER= wp_locl.h $(EXHEADER)
32
33 ALL=    $(GENERAL) $(SRC) $(HEADER)
34
35 top:
36         (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
37
38 all:    lib
39
40 lib:    $(LIBOBJ)
41         $(AR) $(LIB) $(LIBOBJ)
42         $(RANLIB) $(LIB) || echo Never mind.
43         @touch lib
44
45 w86mmx-elf.s: asm/wp-mmx.pl ../perlasm/x86asm.pl
46         (cd asm; $(PERL) wp-mmx.pl elf $(CFLAGS) $(PROCESSOR)) > $@
47 w86mmx-cof.s: asm/wp-mmx.pl ../perlasm/x86asm.pl
48         (cd asm; $(PERL) wp-mmx.pl coff $(CFLAGS) $(PROCESSOR)) > $@
49 w86mmx-out.s: asm/wp-mmx.pl ../perlasm/x86asm.pl
50         (cd asm; $(PERL) wp-mmx.pl a.out $(CFLAGS) $(PROCESSOR)) > $@
51
52 wp-x86_64.s: asm/wp-x86_64.pl
53         $(PERL) asm/wp-x86_64.pl $@
54
55 $(LIBOBJ): $(LIBSRC)
56
57 files:
58         $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
59
60 links:
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:
66         @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
67         @headerlist="$(EXHEADER)"; for i in $$headerlist ; \
68         do  \
69         (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
70         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
71         done;
72
73 tags:
74         ctags $(SRC)
75
76 tests:
77
78 lint:
79         lint -DLINT $(INCLUDES) $(SRC)>fluff
80
81 depend:
82         @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
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 *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
91
92 # DO NOT DELETE THIS LINE -- make depend depends on it.
93
94 wp_block.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
95 wp_block.o: ../../include/openssl/whrlpool.h wp_block.c wp_locl.h
96 wp_dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
97 wp_dgst.o: ../../include/openssl/whrlpool.h wp_dgst.c wp_locl.h