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