Update perl asm scripts include paths for perlasm.
[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 w86mmx-macosx.s: asm/wp-mmx.pl ../perlasm/x86asm.pl
52         (cd asm; $(PERL) wp-mmx.pl macosx $(CFLAGS) $(PROCESSOR)) > $@
53
54 wp-x86_64.s: asm/wp-x86_64.pl
55         $(PERL) asm/wp-x86_64.pl $@
56
57 $(LIBOBJ): $(LIBSRC)
58
59 files:
60         $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
61
62 links:
63         @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
64         @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
65         @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
66
67 install:
68         @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
69         @headerlist="$(EXHEADER)"; for i in $$headerlist ; \
70         do  \
71         (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
72         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
73         done;
74
75 tags:
76         ctags $(SRC)
77
78 tests:
79
80 lint:
81         lint -DLINT $(INCLUDES) $(SRC)>fluff
82
83 depend:
84         @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
85         $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
86
87 dclean:
88         $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
89         mv -f Makefile.new $(MAKEFILE)
90
91 clean:
92         rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
93
94 # DO NOT DELETE THIS LINE -- make depend depends on it.
95
96 wp_block.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
97 wp_block.o: ../../include/openssl/whrlpool.h wp_block.c wp_locl.h
98 wp_dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
99 wp_dgst.o: ../../include/openssl/whrlpool.h wp_dgst.c wp_locl.h