]> git.ipfire.org Git - thirdparty/openssl.git/blame - tools/Makefile.ssl
Import of old SSLeay release: SSLeay 0.8.1b
[thirdparty/openssl.git] / tools / Makefile.ssl
CommitLineData
d02b48c6
RE
1#
2# SSLeay/tools/Makefile
3#
4
5DIR= tools
6TOP= ..
7CC= cc
8INCLUDES= -I.. -I../../include
9CFLAG=-g
10INSTALLTOP=/usr/local/ssl
11MAKE= make -f Makefile.ssl
12MAKEDEPEND= makedepend -f Makefile.ssl
13MAKEFILE= Makefile.ssl
14
15CFLAGS= $(INCLUDES) $(CFLAG)
16
17GENERAL=Makefile.ssl
18TEST=
19APPS= c_hash c_info c_issuer c_name c_rehash
20
21all:
22
23install:
24 @for i in $(APPS) ; \
25 do \
26 (cp $$i $(INSTALLTOP)/bin/$$i; \
27 chmod 755 $(INSTALLTOP)/bin/$$i ); \
28 done;
29
30files:
31 perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
32
33links:
34 /bin/rm -f Makefile
35 $(TOP)/util/point.sh Makefile.ssl Makefile ;
36
37lint:
38
39tags:
40
41errors:
42
43depend:
44
45dclean:
46 perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
47 mv -f Makefile.new $(MAKEFILE)
48
49clean:
50 /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
51
52errors:
53
54# DO NOT DELETE THIS LINE -- make depend depends on it.