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