]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/objects/Makefile
Update filenames in makefiles.
[thirdparty/openssl.git] / crypto / objects / Makefile
CommitLineData
d02b48c6 1#
15ac9716 2# OpenSSL/crypto/objects/Makefile
d02b48c6
RE
3#
4
5DIR= objects
6TOP= ../..
7CC= cc
41d2a336 8INCLUDES= -I.. -I$(TOP) -I../../include
d02b48c6 9CFLAG=-g
42ba5d23 10MAKEFILE= Makefile
d02b48c6 11AR= ar r
0f7b63c8 12PERL= perl
d02b48c6
RE
13
14CFLAGS= $(INCLUDES) $(CFLAG)
15
d02b48c6
RE
16GENERAL=Makefile README
17TEST=
18APPS=
19
20LIB=$(TOP)/libcrypto.a
73934800
DSH
21LIBSRC= o_names.c obj_dat.c obj_lib.c obj_err.c
22LIBOBJ= o_names.o obj_dat.o obj_lib.o obj_err.o
d02b48c6
RE
23
24SRC= $(LIBSRC)
25
c2bbf9cf 26EXHEADER= objects.h obj_mac.h
d02b48c6
RE
27HEADER= $(EXHEADER) obj_dat.h
28
29ALL= $(GENERAL) $(SRC) $(HEADER)
30
31top:
32 (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
33
34all: obj_dat.h lib
35
d02b48c6
RE
36lib: $(LIBOBJ)
37 $(AR) $(LIB) $(LIBOBJ)
4e20b1a6 38 $(RANLIB) $(LIB) || echo Never mind.
d02b48c6
RE
39 @touch lib
40
1d00800e 41obj_dat.h: obj_dat.pl obj_mac.h
86417028 42 $(PERL) obj_dat.pl obj_mac.h obj_dat.h
3ab56511 43
1d00800e
BM
44# objects.pl both reads and writes obj_mac.num
45obj_mac.h: objects.pl objects.txt obj_mac.num
86417028 46 $(PERL) objects.pl objects.txt obj_mac.num obj_mac.h
f7f21255 47 @sleep 1; touch obj_mac.h; sleep 1
3ab56511 48
d02b48c6 49files:
42ba5d23 50 $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
d02b48c6
RE
51
52links:
1314c344
BM
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)
d02b48c6
RE
56
57install:
81a86fcf 58 @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
a2ac429d 59 @headerlist="$(EXHEADER)"; for i in $$headerlist ; \
d02b48c6 60 do \
e5f3045f
BM
61 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
62 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
d02b48c6
RE
63 done;
64
65tags:
66 ctags $(SRC)
67
68tests:
69
70lint:
71 lint -DLINT $(INCLUDES) $(SRC)>fluff
72
73depend:
ce92b6eb 74 @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
001ab3ab 75 $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
d02b48c6
RE
76
77dclean:
99aab161 78 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
d02b48c6
RE
79 mv -f Makefile.new $(MAKEFILE)
80
81clean:
bb8f3c58 82 rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
d02b48c6 83
d02b48c6 84# DO NOT DELETE THIS LINE -- make depend depends on it.
6242bb9c 85
d88a26c4 86o_names.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
9c52d2cc 87o_names.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
3c97bd83
RL
88o_names.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
89o_names.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
90o_names.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
91o_names.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
92o_names.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
93o_names.o: o_names.c
41d2a336 94obj_dat.o: ../../e_os.h ../../include/openssl/asn1.h
9c52d2cc
GT
95obj_dat.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
96obj_dat.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
97obj_dat.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
98obj_dat.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
99obj_dat.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
100obj_dat.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
101obj_dat.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
102obj_dat.o: ../cryptlib.h obj_dat.c obj_dat.h
d88a26c4 103obj_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
9c52d2cc
GT
104obj_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
105obj_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
106obj_err.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
107obj_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
108obj_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
109obj_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
110obj_err.o: obj_err.c
41d2a336 111obj_lib.o: ../../e_os.h ../../include/openssl/asn1.h
9c52d2cc
GT
112obj_lib.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h
113obj_lib.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
114obj_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
115obj_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
116obj_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
117obj_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
118obj_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
119obj_lib.o: ../cryptlib.h obj_lib.c