etc/services - sync with NetBSD-8
[minix.git] / crypto / external / bsd / openssl / dist / tools / Makefile
blobc1a2f6bccf54a409854b762f4b0dd43b2906086d
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 update: depend
49 depend:
51 dclean:
52 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
53 mv -f Makefile.new $(MAKEFILE)
54 rm -f c_rehash
56 clean:
57 rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
59 errors:
61 # DO NOT DELETE THIS LINE -- make depend depends on it.