]> git.ipfire.org Git - thirdparty/openssl.git/blob - crypto/ct/Makefile.in
7e58c3b237ca027f4d509a93998297c1b72f244d
[thirdparty/openssl.git] / crypto / ct / Makefile.in
1 #
2 # OpenSSL/crypto/ct/Makefile
3 #
4
5 DIR= ct
6 TOP= ../..
7 CC= cc
8 INCLUDES= -I.. -I$(TOP) -I../../include
9 CFLAG=-g
10 MAKEFILE= Makefile
11 AR= ar r
12
13 CFLAGS= $(INCLUDES) $(CFLAG) $(SHARED_CFLAG)
14
15 GENERAL=Makefile
16
17 LIB=$(TOP)/libcrypto.a
18 LIBSRC= ct_lib.c ct_err.c ct_oct.c ct_prn.c
19 LIBOBJ= ct_lib.o ct_err.o ct_oct.o ct_prn.o
20
21 SRC= $(LIBSRC)
22
23 HEADER=
24
25 ALL= $(GENERAL) $(SRC) $(HEADER)
26
27 top:
28 (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
29
30 test:
31
32 all: lib
33
34 lib: $(LIBOBJ)
35 $(AR) $(LIB) $(LIBOBJ)
36 $(RANLIB) $(LIB) || echo Never mind.
37 @touch lib
38
39 files:
40 $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
41
42 errors:
43 $(PERL) $(TOP)/util/mkerr.pl -conf ct.ec -hprefix internal/ -write *.c
44
45 depend:
46 $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
47
48 clean:
49 rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
50
51 # DO NOT DELETE THIS LINE -- make depend depends on it.