diff options
Diffstat (limited to 'crypto/comp/Makefile.in')
-rw-r--r-- | crypto/comp/Makefile.in | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/crypto/comp/Makefile.in b/crypto/comp/Makefile.in deleted file mode 100644 index 0673d469d9..0000000000 --- a/crypto/comp/Makefile.in +++ /dev/null @@ -1,46 +0,0 @@ -# -# OpenSSL/crypto/comp/Makefile -# - -DIR= comp -TOP= ../.. -CC= cc -INCLUDES= -I.. -I$(TOP) -I../../include -CFLAG=-g -MAKEFILE= Makefile -AR= ar r - -CFLAGS= $(INCLUDES) $(CFLAG) $(SHARED_CFLAG) - -GENERAL=Makefile - -LIB=$(TOP)/libcrypto.a -LIBSRC= comp_lib.c comp_err.c \ - c_zlib.c - -LIBOBJ= comp_lib.o comp_err.o \ - c_zlib.o - -SRC= $(LIBSRC) - -HEADER= - -ALL= $(GENERAL) $(SRC) $(HEADER) - -top: - (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) - -all: lib - -lib: $(LIBOBJ) - $(AR) $(LIB) $(LIBOBJ) - $(RANLIB) $(LIB) || echo Never mind. - @touch lib - -depend: - $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(LIBSRC) - -clean: - rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff - -# DO NOT DELETE THIS LINE -- make depend depends on it. |