Add a kludge :-(
[openssl.git] / crypto / conf / Makefile.ssl
1 #
2 # SSLeay/crypto/conf/Makefile
3 #
4
5 DIR=    conf
6 TOP=    ../..
7 CC=     cc
8 INCLUDES= -I.. -I../../include
9 CFLAG=-g
10 INSTALL_PREFIX=
11 OPENSSLDIR=     /usr/local/ssl
12 INSTALLTOP=/usr/local/ssl
13 MAKE=           make -f Makefile.ssl
14 MAKEDEPEND=     $(TOP)/util/domd $(TOP)
15 MAKEFILE=       Makefile.ssl
16 AR=             ar r
17
18 CFLAGS= $(INCLUDES) $(CFLAG)
19
20 GENERAL=Makefile
21 TEST=
22 APPS=
23
24 LIB=$(TOP)/libcrypto.a
25 LIBSRC= conf.c conf_err.c
26
27 LIBOBJ= conf.o conf_err.o
28
29 SRC= $(LIBSRC)
30
31 EXHEADER= conf.h
32 HEADER= conf_lcl.h $(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         $(RANLIB) $(LIB)
44         @touch lib
45
46 files:
47         $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
48
49 links:
50         @$(TOP)/util/point.sh Makefile.ssl Makefile
51         @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
52         @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
53         @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
54
55 install:
56         @for i in $(EXHEADER) ; \
57         do  \
58         (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
59         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
60         done;
61
62 tags:
63         ctags $(SRC)
64
65 tests:
66
67 lint:
68         lint -DLINT $(INCLUDES) $(SRC)>fluff
69
70 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         mv -f Makefile.new $(MAKEFILE)
76
77 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.
81
82 conf.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
83 conf.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
84 conf.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
85 conf.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
86 conf.o: ../../include/openssl/stack.h ../cryptlib.h ../e_os.h conf_lcl.h
87 conf_err.o: ../../include/openssl/conf.h ../../include/openssl/err.h
88 conf_err.o: ../../include/openssl/lhash.h ../../include/openssl/stack.h