Remove update tags
[openssl.git] / crypto / idea / Makefile.in
1 #
2 # OpenSSL/crypto/idea/Makefile
3 #
4
5 DIR=    idea
6 TOP=    ../..
7 CC=     cc
8 INCLUDES=
9 CFLAG=-g
10 MAKEFILE=       Makefile
11 AR=             ar r
12
13 CFLAGS= $(INCLUDES) $(CFLAG)
14
15 GENERAL=Makefile
16
17 LIB=$(TOP)/libcrypto.a
18 LIBSRC=i_cbc.c i_cfb64.c i_ofb64.c i_ecb.c i_skey.c
19 LIBOBJ=i_cbc.o i_cfb64.o i_ofb64.o i_ecb.o i_skey.o
20
21 SRC= $(LIBSRC)
22
23 HEADER= idea_lcl.h
24
25 ALL=    $(GENERAL) $(SRC) $(HEADER)
26
27 top:
28         (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
29
30 all:    lib
31
32 lib:    $(LIBOBJ)
33         $(AR) $(LIB) $(LIBOBJ)
34         $(RANLIB) $(LIB) || echo Never mind.
35         @touch lib
36
37 files:
38         $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
39
40 depend:
41         @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
42         $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
43
44 clean:
45         rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
46
47 # DO NOT DELETE THIS LINE -- make depend depends on it.