1998-12-21 10:52:47 +00:00
|
|
|
#
|
|
|
|
# SSLeay/crypto/conf/Makefile
|
|
|
|
#
|
|
|
|
|
|
|
|
DIR= conf
|
|
|
|
TOP= ../..
|
|
|
|
CC= cc
|
|
|
|
INCLUDES= -I.. -I../../include
|
|
|
|
CFLAG=-g
|
|
|
|
INSTALLTOP=/usr/local/ssl
|
|
|
|
MAKE= make -f Makefile.ssl
|
1999-01-19 21:36:31 +00:00
|
|
|
MAKEDEPEND= $(TOP)/util/domd $(TOP)
|
1998-12-21 10:52:47 +00:00
|
|
|
MAKEFILE= Makefile.ssl
|
|
|
|
AR= ar r
|
|
|
|
|
|
|
|
CFLAGS= $(INCLUDES) $(CFLAG)
|
|
|
|
|
|
|
|
GENERAL=Makefile
|
|
|
|
TEST=
|
|
|
|
APPS=
|
|
|
|
|
|
|
|
LIB=$(TOP)/libcrypto.a
|
1999-04-24 17:28:43 +00:00
|
|
|
LIBSRC= conf.c conf_err.c
|
1998-12-21 10:52:47 +00:00
|
|
|
|
1999-04-24 17:28:43 +00:00
|
|
|
LIBOBJ= conf.o conf_err.o
|
1998-12-21 10:52:47 +00:00
|
|
|
|
|
|
|
SRC= $(LIBSRC)
|
|
|
|
|
|
|
|
EXHEADER= conf.h
|
|
|
|
HEADER= conf_lcl.h $(EXHEADER)
|
|
|
|
|
|
|
|
ALL= $(GENERAL) $(SRC) $(HEADER)
|
|
|
|
|
|
|
|
top:
|
|
|
|
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
|
|
|
|
|
|
|
all: lib
|
|
|
|
|
|
|
|
lib: $(LIBOBJ)
|
|
|
|
$(AR) $(LIB) $(LIBOBJ)
|
1999-04-01 12:34:33 +00:00
|
|
|
$(RANLIB) $(LIB)
|
1998-12-21 10:52:47 +00:00
|
|
|
@touch lib
|
|
|
|
|
|
|
|
files:
|
1999-04-01 12:34:33 +00:00
|
|
|
$(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
|
1998-12-21 10:52:47 +00:00
|
|
|
|
|
|
|
links:
|
1999-03-06 12:32:06 +00:00
|
|
|
@$(TOP)/util/point.sh Makefile.ssl Makefile
|
1999-04-28 22:33:54 +00:00
|
|
|
@$(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
|
|
|
@$(TOP)/util/mklink.pl ../../test $(TEST)
|
|
|
|
@$(TOP)/util/mklink.pl ../../apps $(APPS)
|
1998-12-21 10:52:47 +00:00
|
|
|
|
|
|
|
install:
|
|
|
|
@for i in $(EXHEADER) ; \
|
|
|
|
do \
|
1999-04-23 22:13:45 +00:00
|
|
|
(cp $$i $(INSTALLTOP)/include/openssl/$$i; \
|
|
|
|
chmod 644 $(INSTALLTOP)/include/openssl/$$i ); \
|
1998-12-21 10:52:47 +00:00
|
|
|
done;
|
|
|
|
|
|
|
|
tags:
|
|
|
|
ctags $(SRC)
|
|
|
|
|
|
|
|
tests:
|
|
|
|
|
|
|
|
lint:
|
|
|
|
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
|
|
|
|
|
|
|
depend:
|
1999-04-27 01:14:46 +00:00
|
|
|
$(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(LIBSRC)
|
1998-12-21 10:52:47 +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:52:47 +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 10:52:47 +00:00
|
|
|
|
|
|
|
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
1999-03-06 14:32:48 +00:00
|
|
|
|
1999-04-23 22:50:50 +00:00
|
|
|
conf.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
|
|
|
|
conf.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
|
|
|
|
conf.o: ../../include/openssl/e_os.h ../../include/openssl/err.h
|
1999-04-25 09:21:05 +00:00
|
|
|
conf.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
|
|
|
conf.o: ../../include/openssl/opensslv.h ../../include/openssl/stack.h
|
|
|
|
conf.o: ../cryptlib.h conf_lcl.h
|
1999-04-23 22:50:50 +00:00
|
|
|
conf_err.o: ../../include/openssl/conf.h ../../include/openssl/err.h
|
|
|
|
conf_err.o: ../../include/openssl/lhash.h ../../include/openssl/stack.h
|