1998-12-21 10:56:39 +00:00
|
|
|
#
|
2006-02-04 01:50:41 +00:00
|
|
|
# OpenSSL/crypto/rc5/Makefile
|
1998-12-21 10:56:39 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
DIR= rc5
|
|
|
|
TOP= ../..
|
|
|
|
CC= cc
|
|
|
|
CPP= $(CC) -E
|
|
|
|
INCLUDES=
|
|
|
|
CFLAG=-g
|
1999-04-29 21:52:08 +00:00
|
|
|
INSTALL_PREFIX=
|
|
|
|
OPENSSLDIR= /usr/local/ssl
|
1998-12-21 10:56:39 +00:00
|
|
|
INSTALLTOP=/usr/local/ssl
|
2001-02-19 16:06:34 +00:00
|
|
|
MAKEDEPPROG= makedepend
|
|
|
|
MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
|
2004-05-11 12:46:24 +00:00
|
|
|
MAKEFILE= Makefile
|
1998-12-21 10:56:39 +00:00
|
|
|
AR= ar r
|
|
|
|
|
|
|
|
RC5_ENC= rc5_enc.o
|
|
|
|
# or use
|
|
|
|
#DES_ENC= r586-elf.o
|
|
|
|
|
|
|
|
CFLAGS= $(INCLUDES) $(CFLAG)
|
2003-12-01 08:12:01 +00:00
|
|
|
ASFLAGS= $(INCLUDES) $(ASFLAG)
|
1998-12-21 10:56:39 +00:00
|
|
|
|
|
|
|
GENERAL=Makefile
|
|
|
|
TEST=rc5test.c
|
|
|
|
APPS=
|
|
|
|
|
|
|
|
LIB=$(TOP)/libcrypto.a
|
|
|
|
LIBSRC=rc5_skey.c rc5_ecb.c rc5_enc.c rc5cfb64.c rc5ofb64.c
|
|
|
|
LIBOBJ=rc5_skey.o rc5_ecb.o $(RC5_ENC) rc5cfb64.o rc5ofb64.o
|
|
|
|
|
|
|
|
SRC= $(LIBSRC)
|
|
|
|
|
|
|
|
EXHEADER= rc5.h
|
|
|
|
HEADER= rc5_locl.h $(EXHEADER)
|
|
|
|
|
|
|
|
ALL= $(GENERAL) $(SRC) $(HEADER)
|
|
|
|
|
|
|
|
top:
|
|
|
|
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
|
|
|
|
|
|
|
all: lib
|
|
|
|
|
|
|
|
lib: $(LIBOBJ)
|
|
|
|
$(AR) $(LIB) $(LIBOBJ)
|
2001-03-09 14:01:42 +00:00
|
|
|
$(RANLIB) $(LIB) || echo Never mind.
|
1998-12-21 10:56:39 +00:00
|
|
|
@touch lib
|
|
|
|
|
|
|
|
# elf
|
2003-01-12 16:35:30 +00:00
|
|
|
asm/r586-elf.s: asm/rc5-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl
|
|
|
|
(cd asm; $(PERL) rc5-586.pl elf $(CFLAGS) > r586-elf.s)
|
1998-12-21 10:56:39 +00:00
|
|
|
|
|
|
|
# a.out
|
|
|
|
asm/r586-out.o: asm/r586unix.cpp
|
|
|
|
$(CPP) -DOUT asm/r586unix.cpp | as -o asm/r586-out.o
|
|
|
|
|
|
|
|
# bsdi
|
|
|
|
asm/r586bsdi.o: asm/r586unix.cpp
|
1998-12-21 11:00:56 +00:00
|
|
|
$(CPP) -DBSDI asm/r586unix.cpp | sed 's/ :/:/' | as -o asm/r586bsdi.o
|
1998-12-21 10:56:39 +00:00
|
|
|
|
2000-03-02 19:30:41 +00:00
|
|
|
asm/r586unix.cpp: asm/rc5-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl
|
1999-04-01 12:34:33 +00:00
|
|
|
(cd asm; $(PERL) rc5-586.pl cpp >r586unix.cpp)
|
1998-12-21 10:56:39 +00:00
|
|
|
|
|
|
|
files:
|
2004-05-11 12:46:24 +00:00
|
|
|
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
1998-12-21 10:56:39 +00:00
|
|
|
|
|
|
|
links:
|
1999-04-29 12:46:59 +00:00
|
|
|
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
|
|
|
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
|
|
|
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
1998-12-21 10:56:39 +00:00
|
|
|
|
|
|
|
install:
|
2004-11-02 23:53:31 +00:00
|
|
|
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
1998-12-21 10:56:39 +00:00
|
|
|
do \
|
1999-04-29 21:52:08 +00:00
|
|
|
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
|
|
|
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
1998-12-21 10:56:39 +00:00
|
|
|
done;
|
|
|
|
|
|
|
|
tags:
|
|
|
|
ctags $(SRC)
|
|
|
|
|
|
|
|
tests:
|
|
|
|
|
|
|
|
lint:
|
|
|
|
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
|
|
|
|
|
|
|
depend:
|
2002-10-09 13:21:33 +00:00
|
|
|
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
1998-12-21 10:56:39 +00:00
|
|
|
|
|
|
|
dclean:
|
1999-04-01 12:34:33 +00:00
|
|
|
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
1998-12-21 10:56:39 +00:00
|
|
|
mv -f Makefile.new $(MAKEFILE)
|
|
|
|
|
|
|
|
clean:
|
2003-01-12 16:35:30 +00:00
|
|
|
rm -f asm/r586unix.cpp asm/*-elf.* *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
1998-12-21 10:56:39 +00:00
|
|
|
|
|
|
|
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
1999-03-06 14:32:48 +00:00
|
|
|
|
1999-04-23 22:50:50 +00:00
|
|
|
rc5_ecb.o: ../../include/openssl/opensslv.h ../../include/openssl/rc5.h
|
2001-07-31 17:07:24 +00:00
|
|
|
rc5_ecb.o: rc5_ecb.c rc5_locl.h
|
|
|
|
rc5_enc.o: ../../include/openssl/rc5.h rc5_enc.c rc5_locl.h
|
2005-01-26 20:05:46 +00:00
|
|
|
rc5_skey.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
2005-05-02 23:02:19 +00:00
|
|
|
rc5_skey.o: ../../include/openssl/fips.h ../../include/openssl/opensslconf.h
|
2005-01-26 20:05:46 +00:00
|
|
|
rc5_skey.o: ../../include/openssl/opensslv.h ../../include/openssl/rc5.h
|
|
|
|
rc5_skey.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
|
|
|
rc5_skey.o: ../../include/openssl/symhacks.h rc5_locl.h rc5_skey.c
|
2001-07-31 17:07:24 +00:00
|
|
|
rc5cfb64.o: ../../include/openssl/rc5.h rc5_locl.h rc5cfb64.c
|
|
|
|
rc5ofb64.o: ../../include/openssl/rc5.h rc5_locl.h rc5ofb64.c
|