source: trunk/third/openssl/tools/Makefile.ssl @ 18442

Revision 18442, 1.3 KB checked in by zacheiss, 21 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r18441, which included commits to RCS files with non-trunk default branches.
Line 
1#
2# SSLeay/tools/Makefile
3#
4
5DIR=    tools
6TOP=    ..
7CC=     cc
8INCLUDES= -I$(TOP) -I../../include
9CFLAG=-g
10INSTALL_PREFIX=
11OPENSSLDIR=     /usr/local/ssl
12INSTALLTOP=/usr/local/ssl
13MAKE=           make -f Makefile.ssl
14MAKEDEPPROG=    makedepend
15MAKEDEPEND=     $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
16MAKEFILE=       Makefile.ssl
17
18CFLAGS= $(INCLUDES) $(CFLAG)
19
20GENERAL=Makefile.ssl
21TEST=
22APPS= c_rehash
23MISC_APPS= c_hash c_info c_issuer c_name
24
25all:
26
27install:
28        @for i in $(APPS) ; \
29        do  \
30        (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new; \
31        chmod 755 $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new; \
32        mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i ); \
33        done;
34        @for i in $(MISC_APPS) ; \
35        do  \
36        (cp $$i $(INSTALL_PREFIX)$(OPENSSLDIR)/misc/$$i.new; \
37        chmod 755 $(INSTALL_PREFIX)$(OPENSSLDIR)/misc/$$i.new; \
38        mv -f $(INSTALL_PREFIX)$(OPENSSLDIR)/misc/$$i.new $(INSTALL_PREFIX)$(OPENSSLDIR)/misc/$$i ); \
39        done;
40
41files:
42        $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
43
44links:
45        @$(TOP)/util/point.sh Makefile.ssl Makefile
46
47lint:
48
49tags:
50
51errors:
52
53depend:
54
55dclean:
56        $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
57        mv -f Makefile.new $(MAKEFILE)
58
59clean:
60        rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
61
62errors:
63
64# DO NOT DELETE THIS LINE -- make depend depends on it.
Note: See TracBrowser for help on using the repository browser.