From d10dac1187fbb12fdb44a0386f1619b79b40d264 Mon Sep 17 00:00:00 2001 From: Rich Salz Date: Tue, 12 Jan 2016 16:25:30 -0500 Subject: Move Makefiles to Makefile.in Create Makefile's from Makefile.in Rename Makefile.org to Makefile.in Rename Makefiles to Makefile.in Address review feedback from Viktor and Richard Reviewed-by: Viktor Dukhovni Reviewed-by: Richard Levitte --- crypto/store/Makefile | 96 ------------------------------------------------ crypto/store/Makefile.in | 61 ++++++++++++++++++++++++++++++ 2 files changed, 61 insertions(+), 96 deletions(-) delete mode 100644 crypto/store/Makefile create mode 100644 crypto/store/Makefile.in (limited to 'crypto/store') diff --git a/crypto/store/Makefile b/crypto/store/Makefile deleted file mode 100644 index b73fb30b01..0000000000 --- a/crypto/store/Makefile +++ /dev/null @@ -1,96 +0,0 @@ -# -# OpenSSL/crypto/store/Makefile -# - -DIR= store -TOP= ../.. -CC= cc -INCLUDES= -I.. -I$(TOP) -I../../include -CFLAG=-g -MAKEFILE= Makefile -AR= ar r - -CFLAGS= $(INCLUDES) $(CFLAG) - -GENERAL=Makefile - -LIB=$(TOP)/libcrypto.a -LIBSRC= str_err.c str_lib.c str_meth.c str_mem.c -LIBOBJ= str_err.o str_lib.o str_meth.o str_mem.o - -SRC= $(LIBSRC) - -HEADER= str_locl.h - -ALL= $(GENERAL) $(SRC) $(HEADER) - -top: - (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) - -all: lib - -lib: $(LIBOBJ) - $(AR) $(LIB) $(LIBOBJ) - $(RANLIB) $(LIB) || echo Never mind. - @touch lib - -files: - $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO - -tags: - ctags $(SRC) - -tests: - -lint: - lint -DLINT $(INCLUDES) $(SRC)>fluff - -update: depend - -depend: - @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile... - $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) - -dclean: - $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new - mv -f Makefile.new $(MAKEFILE) - -clean: - rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff - -# DO NOT DELETE THIS LINE -- make depend depends on it. - -str_err.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h -str_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h -str_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h -str_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h -str_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h -str_err.o: ../../include/openssl/store.h ../../include/openssl/symhacks.h -str_err.o: str_err.c -str_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h -str_lib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h -str_lib.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h -str_lib.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h -str_lib.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h -str_lib.o: ../../include/openssl/err.h ../../include/openssl/evp.h -str_lib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h -str_lib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h -str_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h -str_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h -str_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h -str_lib.o: ../../include/openssl/store.h ../../include/openssl/symhacks.h -str_lib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h -str_lib.o: str_lib.c str_locl.h -str_mem.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h -str_mem.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h -str_mem.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h -str_mem.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h -str_mem.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h -str_mem.o: ../../include/openssl/store.h ../../include/openssl/symhacks.h -str_mem.o: str_locl.h str_mem.c -str_meth.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h -str_meth.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h -str_meth.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h -str_meth.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h -str_meth.o: ../../include/openssl/store.h ../../include/openssl/symhacks.h -str_meth.o: str_locl.h str_meth.c diff --git a/crypto/store/Makefile.in b/crypto/store/Makefile.in new file mode 100644 index 0000000000..09f90ee7d1 --- /dev/null +++ b/crypto/store/Makefile.in @@ -0,0 +1,61 @@ +# +# OpenSSL/crypto/store/Makefile +# + +DIR= store +TOP= ../.. +CC= cc +INCLUDES= -I.. -I$(TOP) -I../../include +CFLAG=-g +MAKEFILE= Makefile +AR= ar r + +CFLAGS= $(INCLUDES) $(CFLAG) + +GENERAL=Makefile + +LIB=$(TOP)/libcrypto.a +LIBSRC= str_err.c str_lib.c str_meth.c str_mem.c +LIBOBJ= str_err.o str_lib.o str_meth.o str_mem.o + +SRC= $(LIBSRC) + +HEADER= str_locl.h + +ALL= $(GENERAL) $(SRC) $(HEADER) + +top: + (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) + +all: lib + +lib: $(LIBOBJ) + $(AR) $(LIB) $(LIBOBJ) + $(RANLIB) $(LIB) || echo Never mind. + @touch lib + +files: + $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO + +tags: + ctags $(SRC) + +tests: + +lint: + lint -DLINT $(INCLUDES) $(SRC)>fluff + +update: depend + +depend: + @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile... + $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) + +dclean: + $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new + mv -f Makefile.new $(MAKEFILE) + +clean: + rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff + +# DO NOT DELETE THIS LINE -- make depend depends on it. -- cgit v1.2.3