Ignore machine-check MSRs
[freebsd-src/fkvm-freebsd.git] / crypto / openssl / tools / Makefile
blob4ca835c4af5cf8fd3e00b1e278d1926d8658276e
2 # OpenSSL/tools/Makefile
5 DIR= tools
6 TOP= ..
7 CC= cc
8 INCLUDES= -I$(TOP) -I../../include
9 CFLAG=-g
10 MAKEFILE= Makefile
12 CFLAGS= $(INCLUDES) $(CFLAG)
14 GENERAL=Makefile
15 TEST=
16 APPS= c_rehash
17 MISC_APPS= c_hash c_info c_issuer c_name
19 all:
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;
36 files:
37 $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
39 links:
41 lint:
43 tags:
45 errors:
47 depend:
49 dclean:
50 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
51 mv -f Makefile.new $(MAKEFILE)
53 clean:
54 rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
56 errors:
58 # DO NOT DELETE THIS LINE -- make depend depends on it.