]> git.ipfire.org Git - thirdparty/openssl.git/blob - crypto/txt_db/Makefile.ssl
Make all configuration macros available for application by making
[thirdparty/openssl.git] / crypto / txt_db / Makefile.ssl
1 #
2 # SSLeay/crypto/txt_db/Makefile
3 #
4
5 DIR= txt_db
6 TOP= ../..
7 CC= cc
8 INCLUDES=
9 CFLAG=-g
10 INSTALL_PREFIX=
11 OPENSSLDIR= /usr/local/ssl
12 INSTALLTOP=/usr/local/ssl
13 MAKE= make -f Makefile.ssl
14 MAKEDEPPROG= makedepend
15 MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
16 MAKEFILE= Makefile.ssl
17 AR= ar r
18
19 CFLAGS= $(INCLUDES) $(CFLAG)
20
21 GENERAL=Makefile
22 TEST=
23 APPS=
24
25 LIB=$(TOP)/libcrypto.a
26 LIBSRC=txt_db.c
27 LIBOBJ=txt_db.o
28
29 SRC= $(LIBSRC)
30
31 EXHEADER= txt_db.h
32 HEADER= $(EXHEADER)
33
34 ALL= $(GENERAL) $(SRC) $(HEADER)
35
36 top:
37 (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
38
39 all: lib
40
41 lib: $(LIBOBJ)
42 $(AR) $(LIB) $(LIBOBJ)
43 @echo You may get an error following this line. Please ignore.
44 - $(RANLIB) $(LIB)
45 @touch lib
46
47 files:
48 $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
49
50 links:
51 @$(TOP)/util/point.sh Makefile.ssl Makefile
52 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
53 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
54 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
55
56 install:
57 @for i in $(EXHEADER) ; \
58 do \
59 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
60 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
61 done;
62
63 tags:
64 ctags $(SRC)
65
66 tests:
67
68 lint:
69 lint -DLINT $(INCLUDES) $(SRC)>fluff
70
71 depend:
72 $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC)
73
74 dclean:
75 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
76 mv -f Makefile.new $(MAKEFILE)
77
78 clean:
79 rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
80
81 # DO NOT DELETE THIS LINE -- make depend depends on it.
82
83 txt_db.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
84 txt_db.o: ../../include/openssl/crypto.h ../../include/openssl/e_os.h
85 txt_db.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
86 txt_db.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
87 txt_db.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h
88 txt_db.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
89 txt_db.o: ../../include/openssl/txt_db.h ../cryptlib.h txt_db.c