b040e9c66c1e187eb54185cefa9dcfc3958f9ee6
[openssl.git] / crypto / async / Makefile.in
1 #
2 # OpenSSL/crypto/async/Makefile
3 #
4
5 DIR=    async
6 TOP=    ../..
7 CC=     cc
8 INCLUDES=
9 CFLAG=-g
10 MAKEFILE=       Makefile
11 AR=             ar r
12
13 CFLAGS= $(INCLUDES) $(CFLAG)
14
15 GENERAL=Makefile
16 TEST=
17 APPS=
18
19 LIB=$(TOP)/libcrypto.a
20 LIBSRC=async.c async_err.c arch/async_posix.c arch/async_win.c arch/async_null.c
21 LIBOBJ=async.o async_err.o arch/async_posix.o arch/async_win.o arch/async_null.o
22
23 SRC= $(LIBSRC)
24
25 HEADER= async_locl.h arch/async_posix.h arch/async_win.h arch/async_null.h
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 links:
43         @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
44         @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
45         @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
46
47 install:
48         @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
49         @headerlist="$(EXHEADER)"; for i in $$headerlist ; \
50         do  \
51         (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
52         chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
53         done;
54
55 update: depend
56
57 depend:
58         @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile...
59         $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
60
61 clean:
62         rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
63         rm -f arch/*.o arch/*.obj arch/lib arch/tags arch/core arch/.pure arch/.nfs* arch/*.old arch/*.bak arch/fluff
64
65 # Different flavours of make disagree on where output goes
66 .c.o:
67         $(CC) $(CFLAGS) -c $< -o $@
68
69 # DO NOT DELETE THIS LINE -- make depend depends on it.