]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/hmac/Makefile.ssl
Fix make target "install".
[thirdparty/openssl.git] / crypto / hmac / Makefile.ssl
CommitLineData
58964a49
RE
1#
2# SSLeay/crypto/md/Makefile
3#
4
5DIR= hmac
6TOP= ../..
7CC= cc
8INCLUDES=
9CFLAG=-g
10INSTALLTOP=/usr/local/ssl
11MAKE= make -f Makefile.ssl
8039257d 12MAKEDEPEND= $(TOP)/util/domd $(TOP)
58964a49
RE
13MAKEFILE= Makefile.ssl
14AR= ar r
15
16CFLAGS= $(INCLUDES) $(CFLAG)
17
18GENERAL=Makefile
19TEST=hmactest.c
20APPS=
21
22LIB=$(TOP)/libcrypto.a
23LIBSRC=hmac.c
24LIBOBJ=hmac.o
25
26SRC= $(LIBSRC)
27
28EXHEADER= hmac.h
29HEADER= $(EXHEADER)
30
31ALL= $(GENERAL) $(SRC) $(HEADER)
32
33top:
34 (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
35
36all: lib
37
38lib: $(LIBOBJ)
39 $(AR) $(LIB) $(LIBOBJ)
99aab161 40 $(RANLIB) $(LIB)
58964a49
RE
41 @touch lib
42
43files:
99aab161 44 $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
58964a49
RE
45
46links:
bb8f3c58 47 @$(TOP)/util/point.sh Makefile.ssl Makefile
6e6acfd4
BM
48 @$(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
49 @$(TOP)/util/mklink.pl ../../test $(TEST)
50 @$(TOP)/util/mklink.pl ../../apps $(APPS)
58964a49
RE
51
52install:
53 @for i in $(EXHEADER) ; \
54 do \
ec577822
BM
55 (cp $$i $(INSTALLTOP)/include/openssl/$$i; \
56 chmod 644 $(INSTALLTOP)/include/openssl/$$i ); \
58964a49
RE
57 done;
58
59tags:
60 ctags $(SRC)
61
62tests:
63
64lint:
65 lint -DLINT $(INCLUDES) $(SRC)>fluff
66
67depend:
f5d7a031 68 $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC)
58964a49
RE
69
70dclean:
99aab161 71 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
58964a49
RE
72 mv -f Makefile.new $(MAKEFILE)
73
74clean:
bb8f3c58 75 rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
58964a49 76
58964a49 77# DO NOT DELETE THIS LINE -- make depend depends on it.
6242bb9c 78
bf57da07
BM
79hmac.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
80hmac.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
81hmac.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h
82hmac.o: ../../include/openssl/des.h ../../include/openssl/dh.h
83hmac.o: ../../include/openssl/dsa.h ../../include/openssl/evp.h
84hmac.o: ../../include/openssl/hmac.h ../../include/openssl/idea.h
85hmac.o: ../../include/openssl/md2.h ../../include/openssl/md5.h
86hmac.o: ../../include/openssl/mdc2.h ../../include/openssl/objects.h
87hmac.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
88hmac.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
89hmac.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
90hmac.o: ../../include/openssl/rsa.h ../../include/openssl/sha.h
91hmac.o: ../../include/openssl/stack.h