blob: 48d2bd110c7e5bcf8b9d4c9b8e3079ae5bcffd50 [file] [log] [blame]
tuexen4c9a97c2012-05-23 09:10:44 +00001#
2# Copyright (C) 2011-2012 Michael Tuexen
3#
4# All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions
8# are met:
9# 1. Redistributions of source code must retain the above copyright
10# notice, this list of conditions and the following disclaimer.
11# 2. Redistributions in binary form must reproduce the above copyright
12# notice, this list of conditions and the following disclaimer in the
13# documentation and/or other materials provided with the distribution.
14# 3. Neither the name of the project nor the names of its contributors
15# may be used to endorse or promote products derived from this software
16# without specific prior written permission.
17#
18# THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
19# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21# ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
22# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28# SUCH DAMAGE.
29#
30
t00fcxen00e26b72014-09-16 14:59:24 +000031CFLAGS=/I. /W3 /WX
tuexen5469c822011-12-15 15:24:03 +000032
t00fcxen83a86bb2013-09-02 23:00:20 +000033CVARSDLL=-DSCTP_DEBUG -DSCTP_SIMPLE_ALLOCATOR -DSCTP_PROCESS_LEVEL_LOCKS
t00fcxen7fd90602012-09-13 11:45:03 +000034CVARSDLL=$(CVARSDLL) -D__Userspace__ -D__Userspace_os_Windows
tuexen24ade122012-04-19 15:40:50 +000035CVARSDLL=$(CVARSDLL) -DINET -DINET6
tuexen83fd3b12012-01-08 21:01:54 +000036CVARSDLL=$(CVARSDLL) -D_LIB
tuexen5469c822011-12-15 15:24:03 +000037
38LINKFLAGS=/LIBPATH:. Ws2_32.lib
39
40usrsctp_OBJECTS = \
41 user_environment.obj \
42 user_mbuf.obj \
43 user_recv_thread.obj \
tuexen5469c822011-12-15 15:24:03 +000044 user_socket.obj \
45 sctp_asconf.obj \
46 sctp_auth.obj \
47 sctp_bsd_addr.obj \
48 sctp_callout.obj \
49 sctp_cc_functions.obj \
50 sctp_crc32.obj \
tuexen5469c822011-12-15 15:24:03 +000051 sctp_indata.obj \
52 sctp_input.obj \
53 sctp_output.obj \
54 sctp_pcb.obj \
55 sctp_peeloff.obj \
56 sctp_sha1.obj \
57 sctp_ss_functions.obj \
58 sctp_sysctl.obj \
59 sctp_timer.obj \
60 sctp_userspace.obj \
61 sctp_usrreq.obj \
tuexen5fa49b72012-01-08 14:38:43 +000062 sctputil.obj \
63 sctp6_usrreq.obj
tuexen5469c822011-12-15 15:24:03 +000064
65usrsctp_HEADERS = \
66 user_atomic.h \
67 user_environment.h \
68 user_inpcb.h \
69 user_ip6_var.h \
70 user_malloc.h \
71 user_mbuf.h \
tuexen5469c822011-12-15 15:24:03 +000072 user_recv_thread.h \
tuexen5469c822011-12-15 15:24:03 +000073 user_route.h \
74 user_socketvar.h \
75 user_uma.h \
tuexen77b53532011-12-15 20:49:26 +000076 user_queue.h \
77 user_ip_icmp.h \
tuexen59caa502012-01-08 10:27:02 +000078 user_ip6_var.h \
tuexen5469c822011-12-15 15:24:03 +000079 netinet\sctp.h \
80 netinet\sctp_asconf.h \
81 netinet\sctp_auth.h \
82 netinet\sctp_bsd_addr.h \
83 netinet\sctp_callout.h \
84 netinet\sctp_constants.h \
85 netinet\sctp_crc32.h \
tuexen5469c822011-12-15 15:24:03 +000086 netinet\sctp_header.h \
87 netinet\sctp_indata.h \
88 netinet\sctp_input.h \
89 netinet\sctp_lock_userspace.h \
90 netinet\sctp_os.h \
91 netinet\sctp_os_userspace.h \
92 netinet\sctp_output.h \
93 netinet\sctp_pcb.h \
94 netinet\sctp_peeloff.h \
95 netinet\sctp_process_lock.h \
96 netinet\sctp_sha1.h \
97 netinet\sctp_structs.h \
98 netinet\sctp_sysctl.h \
99 netinet\sctp_timer.h \
100 netinet\sctp_uio.h \
101 netinet\sctp_var.h \
tuexen5fa49b72012-01-08 14:38:43 +0000102 netinet\sctputil.h \
103 netinet6\sctp6_var.h
tuexen5469c822011-12-15 15:24:03 +0000104
105usrsctp.lib : $(usrsctp_OBJECTS)
106 lib /out:usrsctp.lib $(LINKFLAGS) $(usrsctp_OBJECTS)
107
108user_environment.obj : user_environment.c $(usrsctp_HEADERS)
109 cl $(CVARSDLL) $(CFLAGS) -c user_environment.c
110
111user_mbuf.obj : user_mbuf.c $(usrsctp_HEADERS)
112 cl $(CVARSDLL) $(CFLAGS) -c user_mbuf.c
113
114user_recv_thread.obj: user_recv_thread.c $(usrsctp_HEADERS)
115 cl $(CVARSDLL) $(CFLAGS) -c user_recv_thread.c
116
tuexen5469c822011-12-15 15:24:03 +0000117user_socket.obj : user_socket.c $(usrsctp_HEADERS)
118 cl $(CVARSDLL) $(CFLAGS) -c user_socket.c
119
120sctp_asconf.obj : netinet\sctp_asconf.c $(usrsctp_HEADERS)
121 cl $(CVARSDLL) $(CFLAGS) -c netinet\sctp_asconf.c
122
123sctp_auth.obj : netinet\sctp_auth.c $(usrsctp_HEADERS)
124 cl $(CVARSDLL) $(CFLAGS) -c netinet\sctp_auth.c
125
126sctp_bsd_addr.obj : netinet\sctp_bsd_addr.c $(usrsctp_HEADERS)
127 cl $(CVARSDLL) $(CFLAGS) -c netinet\sctp_bsd_addr.c
128
129sctp_callout.obj : netinet\sctp_callout.c $(usrsctp_HEADERS)
130 cl $(CVARSDLL) $(CFLAGS) -c netinet\sctp_callout.c
131
132sctp_cc_functions.obj : netinet\sctp_cc_functions.c $(usrsctp_HEADERS)
133 cl $(CVARSDLL) $(CFLAGS) -c netinet\sctp_cc_functions.c
134
135sctp_crc32.obj : netinet\sctp_crc32.c $(usrsctp_HEADERS)
136 cl $(CVARSDLL) $(CFLAGS) -c netinet\sctp_crc32.c
137
tuexen5469c822011-12-15 15:24:03 +0000138sctp_indata.obj : netinet\sctp_indata.c $(usrsctp_HEADERS)
139 cl $(CVARSDLL) $(CFLAGS) -c netinet\sctp_indata.c
140
141sctp_input.obj : netinet\sctp_input.c $(usrsctp_HEADERS)
142 cl $(CVARSDLL) $(CFLAGS) -c netinet\sctp_input.c
143
144sctp_output.obj : netinet\sctp_output.c $(usrsctp_HEADERS)
145 cl $(CVARSDLL) $(CFLAGS) -c netinet\sctp_output.c
146
147sctp_pcb.obj : netinet\sctp_pcb.c $(usrsctp_HEADERS)
148 cl $(CVARSDLL) $(CFLAGS) -c netinet\sctp_pcb.c
149
150sctp_peeloff.obj : netinet\sctp_peeloff.c $(usrsctp_HEADERS)
151 cl $(CVARSDLL) $(CFLAGS) -c netinet\sctp_peeloff.c
152
153sctp_sha1.obj : netinet\sctp_sha1.c $(usrsctp_HEADERS)
154 cl $(CVARSDLL) $(CFLAGS) -c netinet\sctp_sha1.c
155
156sctp_ss_functions.obj : netinet\sctp_ss_functions.c $(usrsctp_HEADERS)
157 cl $(CVARSDLL) $(CFLAGS) -c netinet\sctp_ss_functions.c
158
159sctp_sysctl.obj : netinet\sctp_sysctl.c $(usrsctp_HEADERS)
160 cl $(CVARSDLL) $(CFLAGS) -c netinet\sctp_sysctl.c
161
162sctp_timer.obj : netinet\sctp_timer.c $(usrsctp_HEADERS)
163 cl $(CVARSDLL) $(CFLAGS) -c netinet\sctp_timer.c
164
165sctp_userspace.obj : netinet\sctp_userspace.c $(usrsctp_HEADERS)
166 cl $(CVARSDLL) $(CFLAGS) -c netinet\sctp_userspace.c
167
168sctp_usrreq.obj : netinet\sctp_usrreq.c $(usrsctp_HEADERS)
169 cl $(CVARSDLL) $(CFLAGS) -c netinet\sctp_usrreq.c
170
171sctputil.obj : netinet\sctputil.c $(usrsctp_HEADERS)
172 cl $(CVARSDLL) $(CFLAGS) -c netinet\sctputil.c
173
tuexen59caa502012-01-08 10:27:02 +0000174sctp6_usrreq.obj : netinet6\sctp6_usrreq.c $(usrsctp_HEADERS)
175 cl $(CVARSDLL) $(CFLAGS) -c netinet6\sctp6_usrreq.c
176
tuexen5469c822011-12-15 15:24:03 +0000177clean:
178 del *.obj
tuexen24ade122012-04-19 15:40:50 +0000179 del usrsctp.lib