X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=blobdiff_plain;f=tools%2FMakefile.in;h=b52b45f7d3b8c62c752a81425a53cf8ddd81bf56;hp=d4752f833b9b2421116f07789cd75cbcb7883350;hb=291e94df90aa085ae53b43e52e1cef02efc0ff10;hpb=d10dac1187fbb12fdb44a0386f1619b79b40d264;ds=sidebyside diff --git a/tools/Makefile.in b/tools/Makefile.in index d4752f833b..b52b45f7d3 100644 --- a/tools/Makefile.in +++ b/tools/Makefile.in @@ -15,7 +15,9 @@ GENERAL=Makefile APPS= c_rehash MISC_APPS= c_hash c_info c_issuer c_name -all: +all: apps + +apps: $(APPS) install: @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... @@ -47,23 +49,17 @@ uninstall: files: $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO -lint: - -tags: - errors: -update: depend - depend: -dclean: - $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new - mv -f Makefile.new $(MAKEFILE) - clean: rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff errors: +c_rehash: c_rehash.in + $(PERL) -I$(TOP) -Mconfigdata $(TOP)/util/dofile.pl < c_rehash.in > c_rehash.new + mv c_rehash.new c_rehash + # DO NOT DELETE THIS LINE -- make depend depends on it.