Install various scripts to $(OPENSSLDIR)/misc instead of $(INSTALLTOP)/bin.
[openssl.git] / tools / Makefile.ssl
index 537e97d268e026f256871a8394ea07b34a670c8b..959d752c9f341a94346883be055d8de66e4c48da 100644 (file)
@@ -9,14 +9,15 @@ INCLUDES= -I.. -I../../include
 CFLAG=-g
 INSTALLTOP=/usr/local/ssl
 MAKE=          make -f Makefile.ssl
-MAKEDEPEND=    makedepend -f Makefile.ssl
+MAKEDEPEND=    $(TOP)/util/domd $(TOP)
 MAKEFILE=      Makefile.ssl
 
 CFLAGS= $(INCLUDES) $(CFLAG)
 
 GENERAL=Makefile.ssl
 TEST=
-APPS= c_hash c_info c_issuer c_name c_rehash
+APPS= c_rehash
+MISC_APPS= c_hash c_info c_issuer c_name
 
 all:
 
@@ -25,14 +26,17 @@ install:
        do  \
        (cp $$i $(INSTALLTOP)/bin/$$i; \
        chmod 755 $(INSTALLTOP)/bin/$$i ); \
+       @for i in $(MISC_APPS) ; \
+       do  \
+       (cp $$i $(OPENSSLTOP)/misc/$$i; \
+       chmod 755 $(OPENSSLTOP)/misc/$$i ); \
        done;
 
 files:
-       perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
+       $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
 
 links:
-       /bin/rm -f Makefile
-       $(TOP)/util/point.sh Makefile.ssl Makefile ;
+       @$(TOP)/util/point.sh Makefile.ssl Makefile
 
 lint:
 
@@ -43,11 +47,11 @@ errors:
 depend:
 
 dclean:
-       perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
+       $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
        mv -f Makefile.new $(MAKEFILE)
 
 clean:
-       /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
+       rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
 
 errors: