1998-12-21 11:00:56 +00:00
|
|
|
#
|
2006-02-04 01:45:59 +00:00
|
|
|
# OpenSSL/crypto/comp/Makefile
|
1998-12-21 11:00:56 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
DIR= comp
|
|
|
|
TOP= ../..
|
|
|
|
CC= cc
|
2001-02-22 14:45:02 +00:00
|
|
|
INCLUDES= -I.. -I$(TOP) -I../../include
|
1998-12-21 11:00:56 +00:00
|
|
|
CFLAG=-g
|
2005-03-30 13:05:57 +00:00
|
|
|
MAKEFILE= Makefile
|
1998-12-21 11:00:56 +00:00
|
|
|
AR= ar r
|
|
|
|
|
|
|
|
CFLAGS= $(INCLUDES) $(CFLAG)
|
|
|
|
|
|
|
|
GENERAL=Makefile
|
|
|
|
TEST=
|
|
|
|
APPS=
|
|
|
|
|
|
|
|
LIB=$(TOP)/libcrypto.a
|
2001-12-20 22:12:10 +00:00
|
|
|
LIBSRC= comp_lib.c comp_err.c \
|
1998-12-21 11:00:56 +00:00
|
|
|
c_rle.c c_zlib.c
|
|
|
|
|
2001-12-20 22:12:10 +00:00
|
|
|
LIBOBJ= comp_lib.o comp_err.o \
|
1998-12-21 11:00:56 +00:00
|
|
|
c_rle.o c_zlib.o
|
|
|
|
|
|
|
|
SRC= $(LIBSRC)
|
|
|
|
|
|
|
|
EXHEADER= comp.h
|
|
|
|
HEADER= $(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 11:00:56 +00:00
|
|
|
@touch lib
|
|
|
|
|
|
|
|
files:
|
2005-03-30 13:05:57 +00:00
|
|
|
$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
|
1998-12-21 11:00:56 +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 11:00:56 +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 11:00:56 +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 11:00:56 +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) -- $(LIBSRC)
|
1998-12-21 11:00:56 +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 11:00:56 +00:00
|
|
|
mv -f Makefile.new $(MAKEFILE)
|
|
|
|
|
|
|
|
clean:
|
1999-03-06 12:32:06 +00:00
|
|
|
rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
1998-12-21 11:00:56 +00:00
|
|
|
|
|
|
|
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
1999-03-06 14:32:48 +00:00
|
|
|
|
2001-02-26 10:54:08 +00:00
|
|
|
c_rle.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
2004-05-17 19:26:06 +00:00
|
|
|
c_rle.o: ../../include/openssl/comp.h ../../include/openssl/crypto.h
|
|
|
|
c_rle.o: ../../include/openssl/e_os2.h ../../include/openssl/obj_mac.h
|
|
|
|
c_rle.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
|
|
|
c_rle.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
|
|
|
c_rle.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
|
|
|
c_rle.o: ../../include/openssl/symhacks.h c_rle.c
|
2001-02-26 10:54:08 +00:00
|
|
|
c_zlib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
2004-05-17 19:26:06 +00:00
|
|
|
c_zlib.o: ../../include/openssl/comp.h ../../include/openssl/crypto.h
|
2005-01-17 17:06:58 +00:00
|
|
|
c_zlib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
|
|
|
c_zlib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
|
2004-05-17 19:26:06 +00:00
|
|
|
c_zlib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
|
|
|
c_zlib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
|
|
|
c_zlib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
|
|
|
c_zlib.o: ../../include/openssl/symhacks.h c_zlib.c
|
2002-01-02 12:44:54 +00:00
|
|
|
comp_err.o: ../../include/openssl/bio.h ../../include/openssl/comp.h
|
|
|
|
comp_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
|
|
|
|
comp_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
|
|
|
comp_err.o: ../../include/openssl/opensslconf.h
|
2004-04-19 18:33:41 +00:00
|
|
|
comp_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
|
|
|
comp_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
|
|
|
comp_err.o: ../../include/openssl/symhacks.h comp_err.c
|
2001-02-26 10:54:08 +00:00
|
|
|
comp_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
2004-05-17 19:26:06 +00:00
|
|
|
comp_lib.o: ../../include/openssl/comp.h ../../include/openssl/crypto.h
|
|
|
|
comp_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/obj_mac.h
|
|
|
|
comp_lib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
2001-10-04 07:49:09 +00:00
|
|
|
comp_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
|
|
|
comp_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
|
|
|
comp_lib.o: ../../include/openssl/symhacks.h comp_lib.c
|