aboutsummaryrefslogtreecommitdiff
path: root/deps/uv/Makefile.mingw
blob: 3acf9e14a9eab47a7faf3308c8d1ab43f5af98e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# Copyright (c) 2013, Ben Noordhuis <info@bnoordhuis.nl>
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

CC ?= gcc

CFLAGS += -Wall \
          -Wextra \
          -Wno-unused-parameter \
          -Wstrict-prototypes \
          -Iinclude \
          -Isrc \
          -Isrc/win \
          -DWIN32_LEAN_AND_MEAN \
          -D_WIN32_WINNT=0x0600

INCLUDES = include/stdint-msvc2008.h \
           include/tree.h \
           include/uv-errno.h \
           include/uv-threadpool.h \
           include/uv-version.h \
           include/uv-win.h \
           include/uv.h \
           src/heap-inl.h \
           src/queue.h \
           src/uv-common.h \
           src/win/atomicops-inl.h \
           src/win/handle-inl.h \
           src/win/internal.h \
           src/win/req-inl.h \
           src/win/stream-inl.h \
           src/win/winapi.h \
           src/win/winsock.h

OBJS = src/fs-poll.o \
       src/inet.o \
       src/threadpool.o \
       src/uv-common.o \
       src/version.o \
       src/win/async.o \
       src/win/core.o \
       src/win/detect-wakeup.o \
       src/win/dl.o \
       src/win/error.o \
       src/win/fs-event.o \
       src/win/fs.o \
       src/win/getaddrinfo.o \
       src/win/getnameinfo.o \
       src/win/handle.o \
       src/win/loop-watcher.o \
       src/win/pipe.o \
       src/win/poll.o \
       src/win/process-stdio.o \
       src/win/process.o \
       src/win/req.o \
       src/win/signal.o \
       src/win/stream.o \
       src/win/tcp.o \
       src/win/thread.o \
       src/win/timer.o \
       src/win/tty.o \
       src/win/udp.o \
       src/win/util.o \
       src/win/winapi.o \
       src/win/winsock.o

all: libuv.a

clean:
	-$(RM) $(OBJS) libuv.a

libuv.a: $(OBJS)
	$(AR) crs $@ $^

$(OBJS): %.o : %.c $(INCLUDES)
	$(CC) $(CFLAGS) -c -o $@ $<