Move macros for reading/writing integers into ct_locl.h
[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_b64.c ct_err.c ct_log.c ct_oct.c ct_prn.c ct_sct.c ct_sct_ctx.c \
19         ct_vfy.c ct_x509v3.c
20 LIBOBJ= ct_b64.o ct_err.o ct_log.o ct_oct.o ct_prn.o ct_sct.o ct_sct_ctx.o \
21         ct_vfy.o ct_x509v3.o
22
23 SRC= $(LIBSRC)
24
25 HEADER= 
26
27 ALL=    $(GENERAL) $(SRC) $(HEADER)
28
29 top:
30         (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
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 depend:
43         $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
44
45 clean:
46         rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
47
48 # DO NOT DELETE THIS LINE -- make depend depends on it.