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 <viktor@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org>
This commit is contained in:
@@ -1,92 +0,0 @@
|
||||
#
|
||||
# crypto/seed/Makefile
|
||||
#
|
||||
|
||||
DIR= seed
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
CPP= $(CC) -E
|
||||
INCLUDES=
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC=seed.c seed_ecb.c seed_cbc.c seed_cfb.c seed_ofb.c
|
||||
LIBOBJ=seed.o seed_ecb.o seed_cbc.o seed_cfb.o seed_ofb.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
HEADER= seed_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 *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
seed.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
seed.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
||||
seed.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
||||
seed.o: ../../include/openssl/seed.h ../../include/openssl/stack.h
|
||||
seed.o: ../../include/openssl/symhacks.h seed.c seed_locl.h
|
||||
seed_cbc.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
seed_cbc.o: ../../include/openssl/modes.h ../../include/openssl/opensslconf.h
|
||||
seed_cbc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
seed_cbc.o: ../../include/openssl/safestack.h ../../include/openssl/seed.h
|
||||
seed_cbc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
seed_cbc.o: seed_cbc.c
|
||||
seed_cfb.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
seed_cfb.o: ../../include/openssl/modes.h ../../include/openssl/opensslconf.h
|
||||
seed_cfb.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
seed_cfb.o: ../../include/openssl/safestack.h ../../include/openssl/seed.h
|
||||
seed_cfb.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
seed_cfb.o: seed_cfb.c
|
||||
seed_ecb.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
seed_ecb.o: ../../include/openssl/opensslconf.h
|
||||
seed_ecb.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
seed_ecb.o: ../../include/openssl/safestack.h ../../include/openssl/seed.h
|
||||
seed_ecb.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
seed_ecb.o: seed_ecb.c
|
||||
seed_ofb.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
||||
seed_ofb.o: ../../include/openssl/modes.h ../../include/openssl/opensslconf.h
|
||||
seed_ofb.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
||||
seed_ofb.o: ../../include/openssl/safestack.h ../../include/openssl/seed.h
|
||||
seed_ofb.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
||||
seed_ofb.o: seed_ofb.c
|
||||
62
crypto/seed/Makefile.in
Normal file
62
crypto/seed/Makefile.in
Normal file
@@ -0,0 +1,62 @@
|
||||
#
|
||||
# crypto/seed/Makefile
|
||||
#
|
||||
|
||||
DIR= seed
|
||||
TOP= ../..
|
||||
CC= cc
|
||||
CPP= $(CC) -E
|
||||
INCLUDES=
|
||||
CFLAG=-g
|
||||
MAKEFILE= Makefile
|
||||
AR= ar r
|
||||
|
||||
CFLAGS= $(INCLUDES) $(CFLAG)
|
||||
|
||||
GENERAL=Makefile
|
||||
|
||||
LIB=$(TOP)/libcrypto.a
|
||||
LIBSRC=seed.c seed_ecb.c seed_cbc.c seed_cfb.c seed_ofb.c
|
||||
LIBOBJ=seed.o seed_ecb.o seed_cbc.o seed_cfb.o seed_ofb.o
|
||||
|
||||
SRC= $(LIBSRC)
|
||||
|
||||
HEADER= seed_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 *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
||||
|
||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
Reference in New Issue
Block a user