Makefile revision 296341
1#
2# crypto/whrlpool/Makefile
3#
4
5DIR=	whrlpool
6TOP=	../..
7CC=	cc
8CPP=	$(CC) -E
9INCLUDES=
10CFLAG=-g
11MAKEFILE=	Makefile
12AR=		ar r
13
14WP_ASM_OBJ=wp_block.o
15
16CFLAGS= $(INCLUDES) $(CFLAG)
17ASFLAGS= $(INCLUDES) $(ASFLAG)
18AFLAGS= $(ASFLAGS)
19
20GENERAL=Makefile
21TEST=wp_test.c
22APPS=
23
24LIB=$(TOP)/libcrypto.a
25LIBSRC=wp_dgst.c wp_block.c
26LIBOBJ=wp_dgst.o $(WP_ASM_OBJ)
27
28SRC= $(LIBSRC)
29
30EXHEADER= whrlpool.h
31HEADER= wp_locl.h $(EXHEADER)
32
33ALL=    $(GENERAL) $(SRC) $(HEADER)
34
35top:
36	(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
37
38all:	lib
39
40lib:	$(LIBOBJ)
41	$(AR) $(LIB) $(LIBOBJ)
42	$(RANLIB) $(LIB) || echo Never mind.
43	@touch lib
44
45wp-mmx.s:	asm/wp-mmx.pl ../perlasm/x86asm.pl
46	$(PERL) asm/wp-mmx.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@
47
48wp-x86_64.s: asm/wp-x86_64.pl
49	$(PERL) asm/wp-x86_64.pl $(PERLASM_SCHEME) > $@
50
51$(LIBOBJ): $(LIBSRC)
52
53files:
54	$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
55
56links:
57	@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
58	@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
59	@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
60
61install:
62	@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
63	@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
64	do  \
65	(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
66	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
67	done;
68
69tags:
70	ctags $(SRC)
71
72tests:
73
74lint:
75	lint -DLINT $(INCLUDES) $(SRC)>fluff
76
77update: depend
78
79depend:
80	@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
81	$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
82
83dclean:
84	$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
85	mv -f Makefile.new $(MAKEFILE)
86
87clean:
88	rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
89
90# DO NOT DELETE THIS LINE -- make depend depends on it.
91
92wp_block.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
93wp_block.o: ../../include/openssl/whrlpool.h wp_block.c wp_locl.h
94wp_dgst.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
95wp_dgst.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
96wp_dgst.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
97wp_dgst.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
98wp_dgst.o: ../../include/openssl/whrlpool.h wp_dgst.c wp_locl.h
99