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

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

CFLAGS= $(INCLUDES) $(CFLAG)

GENERAL=Makefile
TEST=
APPS=

LIB=$(TOP)/libcrypto.a
26
LIBSRC= conf_err.c conf_lib.c conf_api.c conf_def.c
27

28
LIBOBJ=	conf_err.o conf_lib.o conf_api.o conf_def.o
29 30 31

SRC= $(LIBSRC)

32 33
EXHEADER= conf.h conf_api.h
HEADER=	conf_def.h $(EXHEADER)
34 35 36 37 38 39 40 41 42 43

ALL=    $(GENERAL) $(SRC) $(HEADER)

top:
	(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)

all:	lib

lib:	$(LIBOBJ)
	$(AR) $(LIB) $(LIBOBJ)
44 45
	@echo You may get an error following this line.  Please ignore.
	- $(RANLIB) $(LIB)
46 47 48
	@touch lib

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

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

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

tags:
	ctags $(SRC)

tests:

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

depend:
73
	$(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(LIBSRC)
74 75

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

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

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

84 85 86
conf_api.o: ../../e_os.h ../../include/openssl/bio.h
conf_api.o: ../../include/openssl/conf.h ../../include/openssl/conf_api.h
conf_api.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
87 88
conf_api.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
conf_api.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
R
Richard Levitte 已提交
89
conf_api.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
90
conf_api.o: conf_api.c
R
Richard Levitte 已提交
91 92 93 94 95
conf_def.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
conf_def.o: ../../include/openssl/conf.h ../../include/openssl/conf_api.h
conf_def.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
conf_def.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
conf_def.o: ../../include/openssl/opensslconf.h
96
conf_def.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
R
Richard Levitte 已提交
97
conf_def.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
98
conf_def.o: conf_def.c conf_def.h
R
Richard Levitte 已提交
99 100 101 102
conf_err.o: ../../include/openssl/bio.h ../../include/openssl/conf.h
conf_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
conf_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
conf_err.o: ../../include/openssl/opensslconf.h
103
conf_err.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
R
Richard Levitte 已提交
104
conf_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
105
conf_err.o: conf_err.c
R
Richard Levitte 已提交
106 107 108 109
conf_lib.o: ../../include/openssl/bio.h ../../include/openssl/conf.h
conf_lib.o: ../../include/openssl/conf_api.h ../../include/openssl/crypto.h
conf_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
conf_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
110
conf_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
R
Richard Levitte 已提交
111
conf_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
112
conf_lib.o: conf_lib.c