1998-12-21 18:56:39 +08:00
|
|
|
#
|
|
|
|
# SSLeay/crypto/cast/Makefile
|
|
|
|
#
|
|
|
|
|
|
|
|
DIR= cast
|
|
|
|
TOP= ../..
|
|
|
|
CC= cc
|
|
|
|
CPP= $(CC) -E
|
|
|
|
INCLUDES=
|
|
|
|
CFLAG=-g
|
2005-03-30 21:05:57 +08:00
|
|
|
MAKEFILE= Makefile
|
1998-12-21 18:56:39 +08:00
|
|
|
AR= ar r
|
|
|
|
|
|
|
|
CAST_ENC=c_enc.o
|
|
|
|
|
|
|
|
CFLAGS= $(INCLUDES) $(CFLAG)
|
2003-12-01 16:12:47 +08:00
|
|
|
ASFLAGS= $(INCLUDES) $(ASFLAG)
|
2004-08-30 05:36:37 +08:00
|
|
|
AFLAGS= $(ASFLAGS)
|
1998-12-21 18:56:39 +08:00
|
|
|
|
|
|
|
GENERAL=Makefile
|
|
|
|
TEST=casttest.c
|
|
|
|
APPS=
|
|
|
|
|
|
|
|
LIB=$(TOP)/libcrypto.a
|
|
|
|
LIBSRC=c_skey.c c_ecb.c c_enc.c c_cfb64.c c_ofb64.c
|
|
|
|
LIBOBJ=c_skey.o c_ecb.o $(CAST_ENC) c_cfb64.o c_ofb64.o
|
|
|
|
|
|
|
|
SRC= $(LIBSRC)
|
|
|
|
|
|
|
|
EXHEADER= cast.h
|
|
|
|
HEADER= cast_s.h cast_lcl.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 22:01:42 +08:00
|
|
|
$(RANLIB) $(LIB) || echo Never mind.
|
1998-12-21 18:56:39 +08:00
|
|
|
@touch lib
|
|
|
|
|
2004-08-02 01:33:58 +08:00
|
|
|
# ELF
|
2005-02-06 21:23:34 +08:00
|
|
|
cx86-elf.s: asm/cast-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl
|
2004-08-02 01:33:58 +08:00
|
|
|
(cd asm; $(PERL) cast-586.pl elf $(CLAGS) $(PROCESSOR) > ../$@)
|
|
|
|
# COFF
|
2005-02-06 21:23:34 +08:00
|
|
|
cx86-cof.s: asm/cast-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl
|
2004-08-02 01:33:58 +08:00
|
|
|
(cd asm; $(PERL) cast-586.pl coff $(CLAGS) $(PROCESSOR) > ../$@)
|
1998-12-21 18:56:39 +08:00
|
|
|
# a.out
|
2004-08-30 05:36:37 +08:00
|
|
|
cx86-out.s: asm/cast-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl
|
|
|
|
(cd asm; $(PERL) cast-586.pl a.out $(CLAGS) $(PROCESSOR) > ../$@)
|
1998-12-21 18:56:39 +08:00
|
|
|
|
|
|
|
files:
|
2005-03-30 21:05:57 +08:00
|
|
|
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
1998-12-21 18:56:39 +08:00
|
|
|
|
|
|
|
links:
|
1999-04-29 20:46:59 +08: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 18:56:39 +08:00
|
|
|
|
|
|
|
install:
|
2005-05-16 06:23:26 +08:00
|
|
|
@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
|
2004-11-03 07:55:01 +08:00
|
|
|
@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
|
1998-12-21 18:56:39 +08:00
|
|
|
do \
|
1999-04-30 05:52:08 +08:00
|
|
|
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
|
|
|
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
1998-12-21 18:56:39 +08:00
|
|
|
done;
|
|
|
|
|
|
|
|
tags:
|
|
|
|
ctags $(SRC)
|
|
|
|
|
|
|
|
tests:
|
|
|
|
|
|
|
|
lint:
|
|
|
|
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
|
|
|
|
|
|
|
depend:
|
2005-05-17 00:55:47 +08:00
|
|
|
@[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
|
2002-10-09 21:25:12 +08:00
|
|
|
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
1998-12-21 18:56:39 +08:00
|
|
|
|
|
|
|
dclean:
|
1999-04-01 20:34:33 +08:00
|
|
|
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
1998-12-21 18:56:39 +08:00
|
|
|
mv -f Makefile.new $(MAKEFILE)
|
|
|
|
|
|
|
|
clean:
|
2005-02-06 21:23:34 +08:00
|
|
|
rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
1998-12-21 18:56:39 +08:00
|
|
|
|
|
|
|
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
1999-03-06 22:32:48 +08:00
|
|
|
|
2005-05-17 00:55:47 +08:00
|
|
|
c_cfb64.o: ../../e_os.h ../../include/openssl/cast.h
|
|
|
|
c_cfb64.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
|
|
|
c_cfb64.o: c_cfb64.c cast_lcl.h
|
|
|
|
c_ecb.o: ../../e_os.h ../../include/openssl/cast.h
|
|
|
|
c_ecb.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
|
|
|
c_ecb.o: ../../include/openssl/opensslv.h c_ecb.c cast_lcl.h
|
|
|
|
c_enc.o: ../../e_os.h ../../include/openssl/cast.h
|
|
|
|
c_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
|
|
|
c_enc.o: c_enc.c cast_lcl.h
|
|
|
|
c_ofb64.o: ../../e_os.h ../../include/openssl/cast.h
|
|
|
|
c_ofb64.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
|
|
|
c_ofb64.o: c_ofb64.c cast_lcl.h
|
|
|
|
c_skey.o: ../../e_os.h ../../include/openssl/cast.h
|
|
|
|
c_skey.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h
|
|
|
|
c_skey.o: c_skey.c cast_lcl.h cast_s.h
|