Makefile.ssl 2.0 KB
Newer Older
1 2 3 4 5 6 7 8 9
#
# SSLeay/crypto/conf/Makefile
#

DIR=	conf
TOP=	../..
CC=	cc
INCLUDES= -I.. -I../../include
CFLAG=-g
10 11
INSTALL_PREFIX=
OPENSSLDIR=     /usr/local/ssl
12 13
INSTALLTOP=/usr/local/ssl
MAKE=		make -f Makefile.ssl
14
MAKEDEPEND=	$(TOP)/util/domd $(TOP)
15 16 17 18 19 20 21 22 23 24
MAKEFILE=	Makefile.ssl
AR=		ar r

CFLAGS= $(INCLUDES) $(CFLAG)

GENERAL=Makefile
TEST=
APPS=

LIB=$(TOP)/libcrypto.a
25
LIBSRC= conf.c conf_err.c
26

27
LIBOBJ=	conf.o conf_err.o
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42

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)
43
	$(RANLIB) $(LIB)
44 45 46
	@touch lib

files:
47
	$(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
48 49

links:
50
	@$(TOP)/util/point.sh Makefile.ssl Makefile
51 52 53
	@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
	@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
	@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
54 55 56 57

install:
	@for i in $(EXHEADER) ; \
	do  \
58 59
	(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
60 61 62 63 64 65 66 67 68 69 70
	done;

tags:
	ctags $(SRC)

tests:

lint:
	lint -DLINT $(INCLUDES) $(SRC)>fluff

depend:
71
	$(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(LIBSRC)
72 73

dclean:
74
	$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
75 76 77
	mv -f Makefile.new $(MAKEFILE)

clean:
78
	rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
79 80

# DO NOT DELETE THIS LINE -- make depend depends on it.
B
Ben Laurie 已提交
81

B
Bodo Möller 已提交
82 83 84
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
85 86 87
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
B
Bodo Möller 已提交
88 89
conf_err.o: ../../include/openssl/conf.h ../../include/openssl/err.h
conf_err.o: ../../include/openssl/lhash.h ../../include/openssl/stack.h