Remove update tags
[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)
14
15 GENERAL=Makefile
16
17 LIB=$(TOP)/libcrypto.a
18 LIBSRC= ct_lib.c ct_err.c
19 LIBOBJ= ct_lib.o ct_err.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         @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
47         $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
48
49 clean:
50         rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
51
52 # DO NOT DELETE THIS LINE -- make depend depends on it.