Refactor the async wait fd logic
[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) $(SHARED_CFLAG)
14
15 GENERAL=Makefile
16 TEST=
17 APPS=
18
19 LIB=$(TOP)/libcrypto.a
20 LIBSRC=async.c async_wait.c async_err.c arch/async_posix.c arch/async_win.c arch/async_null.c
21 LIBOBJ=async.o async_wait.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 $(DESTDIR)$(INSTALLTOP)/include/openssl/$$i; \
52         chmod 644 $(DESTDIR)$(INSTALLTOP)/include/openssl/$$i ); \
53         done;
54
55 depend:
56         $(TOP)/util/domd $(CFLAG) $(INCLUDES) -- $(PROGS) $(LIBSRC)
57
58 clean:
59         rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
60         rm -f arch/*.o arch/*.obj arch/lib arch/tags arch/core arch/.pure arch/.nfs* arch/*.old arch/*.bak arch/fluff
61
62 # Different flavours of make disagree on where output goes
63 .c.o:
64         $(CC) $(CFLAGS) -c $< -o $@
65
66 # DO NOT DELETE THIS LINE -- make depend depends on it.