Remove the remainder of util/mk1mf.pl and companion scripts
[openssl.git] / crypto / comp / Makefile.in
1 #
2 # OpenSSL/crypto/comp/Makefile
3 #
4
5 DIR=    comp
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= comp_lib.c comp_err.c \
19         c_zlib.c
20
21 LIBOBJ= comp_lib.o comp_err.o \
22         c_zlib.o
23
24 SRC= $(LIBSRC)
25
26 HEADER= 
27
28 ALL=    $(GENERAL) $(SRC) $(HEADER)
29
30 top:
31         (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
32
33 all:    lib
34
35 lib:    $(LIBOBJ)
36         $(AR) $(LIB) $(LIBOBJ)
37         $(RANLIB) $(LIB) || echo Never mind.
38         @touch lib
39
40 depend:
41         $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(LIBSRC)
42
43 clean:
44         rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
45
46 # DO NOT DELETE THIS LINE -- make depend depends on it.