
1: # 2: # OpenSSL/tools/Makefile 3: # 4: 5: DIR= tools 6: TOP= .. 7: CC= cc 8: INCLUDES= -I$(TOP) -I../../include 9: CFLAG=-g 10: MAKEFILE= Makefile 11: 12: CFLAGS= $(INCLUDES) $(CFLAG) 13: 14: GENERAL=Makefile 15: TEST= 16: APPS= c_rehash 17: MISC_APPS= c_hash c_info c_issuer c_name 18: 19: all: 20: 21: install: 22: @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... 23: @for i in $(APPS) ; \ 24: do \ 25: (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new; \ 26: chmod 755 $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new; \ 27: mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i ); \ 28: done; 29: @for i in $(MISC_APPS) ; \ 30: do \ 31: (cp $$i $(INSTALL_PREFIX)$(OPENSSLDIR)/misc/$$i.new; \ 32: chmod 755 $(INSTALL_PREFIX)$(OPENSSLDIR)/misc/$$i.new; \ 33: mv -f $(INSTALL_PREFIX)$(OPENSSLDIR)/misc/$$i.new $(INSTALL_PREFIX)$(OPENSSLDIR)/misc/$$i ); \ 34: done; 35: 36: files: 37: $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO 38: 39: links: 40: 41: lint: 42: 43: tags: 44: 45: errors: 46: 47: depend: 48: 49: dclean: 50: $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new 51: mv -f Makefile.new $(MAKEFILE) 52: 53: clean: 54: rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff 55: 56: errors: 57: 58: # DO NOT DELETE THIS LINE -- make depend depends on it.