4e20a4e688
acceptable, since all that happens if it fails is a library with an index, which makes linking slower, but still working correctly.
102 lines
2.8 KiB
Text
102 lines
2.8 KiB
Text
#
|
|
# SSLeay/crypto/comp/Makefile
|
|
#
|
|
|
|
DIR= comp
|
|
TOP= ../..
|
|
CC= cc
|
|
INCLUDES= -I.. -I../../include
|
|
CFLAG=-g
|
|
INSTALL_PREFIX=
|
|
OPENSSLDIR= /usr/local/ssl
|
|
INSTALLTOP=/usr/local/ssl
|
|
MAKE= make -f Makefile.ssl
|
|
MAKEDEPEND= $(TOP)/util/domd $(TOP)
|
|
MAKEFILE= Makefile.ssl
|
|
AR= ar r
|
|
|
|
CFLAGS= $(INCLUDES) $(CFLAG)
|
|
|
|
GENERAL=Makefile
|
|
TEST=
|
|
APPS=
|
|
|
|
LIB=$(TOP)/libcrypto.a
|
|
LIBSRC= comp_lib.c \
|
|
c_rle.c c_zlib.c
|
|
|
|
LIBOBJ= comp_lib.o \
|
|
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)
|
|
@echo You may get an error following this line. Please ignore.
|
|
- $(RANLIB) $(LIB)
|
|
@touch lib
|
|
|
|
files:
|
|
$(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
|
|
|
|
links:
|
|
@$(TOP)/util/point.sh Makefile.ssl Makefile
|
|
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
|
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
|
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
|
|
|
install:
|
|
@for i in $(EXHEADER) ; \
|
|
do \
|
|
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
|
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
|
done;
|
|
|
|
tags:
|
|
ctags $(SRC)
|
|
|
|
tests:
|
|
|
|
lint:
|
|
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
|
|
|
depend:
|
|
$(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(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.
|
|
|
|
c_rle.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
|
c_rle.o: ../../include/openssl/bn.h ../../include/openssl/comp.h
|
|
c_rle.o: ../../include/openssl/crypto.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/safestack.h
|
|
c_rle.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
|
c_zlib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
|
c_zlib.o: ../../include/openssl/bn.h ../../include/openssl/comp.h
|
|
c_zlib.o: ../../include/openssl/crypto.h ../../include/openssl/obj_mac.h
|
|
c_zlib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
|
c_zlib.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
|
|
c_zlib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
|
comp_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
|
comp_lib.o: ../../include/openssl/bn.h ../../include/openssl/comp.h
|
|
comp_lib.o: ../../include/openssl/crypto.h ../../include/openssl/obj_mac.h
|
|
comp_lib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
|
|
comp_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
|
|
comp_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|