diff options
author | tedu <> | 2014-04-15 21:04:55 +0000 |
---|---|---|
committer | tedu <> | 2014-04-15 21:04:55 +0000 |
commit | 7563eb0e0e484b160bf6f094f343b2b9a5522f18 (patch) | |
tree | 8d374150d1e622b8cdba3a7969cc9e58b538997d /src/lib/libcrypto/objects | |
parent | ffff174436807ddf0bb93a8a1415f730e7b3a342 (diff) | |
download | openbsd-7563eb0e0e484b160bf6f094f343b2b9a5522f18.tar.gz openbsd-7563eb0e0e484b160bf6f094f343b2b9a5522f18.tar.bz2 openbsd-7563eb0e0e484b160bf6f094f343b2b9a5522f18.zip |
we don't use these files for building
Diffstat (limited to 'src/lib/libcrypto/objects')
-rw-r--r-- | src/lib/libcrypto/objects/Makefile | 88 |
1 files changed, 0 insertions, 88 deletions
diff --git a/src/lib/libcrypto/objects/Makefile b/src/lib/libcrypto/objects/Makefile deleted file mode 100644 index 7e0f137deb..0000000000 --- a/src/lib/libcrypto/objects/Makefile +++ /dev/null | |||
@@ -1,88 +0,0 @@ | |||
1 | # | ||
2 | # OpenSSL/crypto/objects/Makefile | ||
3 | # | ||
4 | |||
5 | DIR= objects | ||
6 | TOP= ../.. | ||
7 | CC= cc | ||
8 | INCLUDES= -I.. -I$(TOP) -I../../include | ||
9 | CFLAG=-g | ||
10 | MAKEFILE= Makefile | ||
11 | AR= ar r | ||
12 | PERL= perl | ||
13 | |||
14 | CFLAGS= $(INCLUDES) $(CFLAG) | ||
15 | |||
16 | GENERAL=Makefile README | ||
17 | TEST= | ||
18 | APPS= | ||
19 | |||
20 | LIB=$(TOP)/libcrypto.a | ||
21 | LIBSRC= o_names.c obj_dat.c obj_lib.c obj_err.c obj_xref.c | ||
22 | LIBOBJ= o_names.o obj_dat.o obj_lib.o obj_err.o obj_xref.o | ||
23 | |||
24 | SRC= $(LIBSRC) | ||
25 | |||
26 | EXHEADER= objects.h obj_mac.h | ||
27 | HEADER= $(EXHEADER) obj_dat.h obj_xref.h | ||
28 | |||
29 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
30 | |||
31 | top: | ||
32 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
33 | |||
34 | all: obj_dat.h obj_xref.h lib | ||
35 | |||
36 | lib: $(LIBOBJ) | ||
37 | $(AR) $(LIB) $(LIBOBJ) | ||
38 | $(RANLIB) $(LIB) || echo Never mind. | ||
39 | @touch lib | ||
40 | |||
41 | obj_dat.h: obj_dat.pl obj_mac.h | ||
42 | $(PERL) obj_dat.pl obj_mac.h obj_dat.h | ||
43 | |||
44 | # objects.pl both reads and writes obj_mac.num | ||
45 | obj_mac.h: objects.pl objects.txt obj_mac.num | ||
46 | $(PERL) objects.pl objects.txt obj_mac.num obj_mac.h | ||
47 | @sleep 1; touch obj_mac.h; sleep 1 | ||
48 | |||
49 | obj_xref.h: objxref.pl obj_xref.txt obj_mac.num | ||
50 | $(PERL) objxref.pl obj_mac.num obj_xref.txt > obj_xref.h | ||
51 | @sleep 1; touch obj_xref.h; sleep 1 | ||
52 | |||
53 | files: | ||
54 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | ||
55 | |||
56 | links: | ||
57 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
58 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
59 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
60 | |||
61 | install: | ||
62 | @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... | ||
63 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | ||
64 | do \ | ||
65 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
66 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
67 | done; | ||
68 | |||
69 | tags: | ||
70 | ctags $(SRC) | ||
71 | |||
72 | tests: | ||
73 | |||
74 | lint: | ||
75 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
76 | |||
77 | depend: | ||
78 | @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile... | ||
79 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | ||
80 | |||
81 | dclean: | ||
82 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
83 | mv -f Makefile.new $(MAKEFILE) | ||
84 | |||
85 | clean: | ||
86 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
87 | |||
88 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||