1998-12-21 10:56:39 +00:00
|
|
|
#
|
|
|
|
# SSLeay/crypto/rc5/Makefile
|
|
|
|
#
|
|
|
|
|
|
|
|
DIR= rc5
|
|
|
|
TOP= ../..
|
|
|
|
CC= cc
|
|
|
|
CPP= $(CC) -E
|
|
|
|
INCLUDES=
|
|
|
|
CFLAG=-g
|
2005-03-30 13:05:57 +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:47 +00:00
|
|
|
ASFLAGS= $(INCLUDES) $(ASFLAG)
|
2004-08-29 21:36:37 +00:00
|
|
|
AFLAGS= $(ASFLAGS)
|
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
|
|
|
|
|
2004-08-01 17:33:58 +00:00
|
|
|
# ELF
|
2005-02-06 13:23:34 +00:00
|
|
|
r586-elf.s: asm/rc5-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl
|
2004-08-01 17:33:58 +00:00
|
|
|
(cd asm; $(PERL) rc5-586.pl elf $(CFLAGS) > ../$@)
|
|
|
|
# COFF
|
2005-02-06 13:23:34 +00:00
|
|
|
r586-cof.s: asm/rc5-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl
|
2004-08-01 17:33:58 +00:00
|
|
|
(cd asm; $(PERL) rc5-586.pl coff $(CFLAGS) > ../$@)
|
1998-12-21 10:56:39 +00:00
|
|
|
# a.out
|
2004-08-29 21:36:37 +00:00
|
|
|
r586-out.s: asm/rc5-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl
|
|
|
|
(cd asm; $(PERL) rc5-586.pl a.out $(CFLAGS) > ../$@)
|
1998-12-21 10:56:39 +00:00
|
|
|
|
|
|
|
files:
|
2005-03-30 13:05:57 +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:
|
2005-05-15 22:23:26 +00:00
|
|
|
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
2004-11-02 23:55:01 +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:
|
2005-05-16 16:55:47 +00:00
|
|
|
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
2002-10-09 13:25:12 +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:
|
2005-02-06 13:23:34 +00:00
|
|
|
rm -f *.s *.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
|
|
|
|
2003-03-20 23:54:33 +00:00
|
|
|
rc5_ecb.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
|
|
|
rc5_ecb.o: ../../include/openssl/rc5.h rc5_ecb.c rc5_locl.h
|
|
|
|
rc5_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc5.h
|
|
|
|
rc5_enc.o: rc5_enc.c rc5_locl.h
|
|
|
|
rc5_skey.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc5.h
|
|
|
|
rc5_skey.o: rc5_locl.h rc5_skey.c
|
|
|
|
rc5cfb64.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc5.h
|
|
|
|
rc5cfb64.o: rc5_locl.h rc5cfb64.c
|
|
|
|
rc5ofb64.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc5.h
|
|
|
|
rc5ofb64.o: rc5_locl.h rc5ofb64.c
|