Split up "gfortran.dg/goacc/loop-2.f95"
[official-gcc.git] / libphobos / libdruntime / Makefile.am
blobe14cc031eeaed7d4ba9c3e456080a0aaf1e9b89e
1 # Makefile for the D runtime library.
2 # Copyright (C) 2012-2018 Free Software Foundation, Inc.
4 # GCC is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 3, or (at your option)
7 # any later version.
9 # GCC is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with GCC; see the file COPYING3.  If not see
16 # <http://www.gnu.org/licenses/>.
18 # Include D build rules
19 include $(top_srcdir)/d_rules.am
21 # Make sure GDC can find libdruntime include files
22 D_EXTRA_DFLAGS=-nostdinc -I $(srcdir) -I .
24 # D flags for compilation
25 AM_DFLAGS=$(phobos_compiler_pic_flag)
27 # Install all D and DI files
28 ALL_DRUNTIME_INSTALL_DSOURCES = $(DRUNTIME_DSOURCES) \
29         $(DRUNTIME_DSOURCES_GC) $(DRUNTIME_DSOURCES_GCSTUB) \
30         $(DRUNTIME_DSOURCES_BIONIC) $(DRUNTIME_DSOURCES_DARWIN) \
31         $(DRUNTIME_DSOURCES_DRAGONFLYBSD) $(DRUNTIME_DSOURCES_FREEBSD) \
32         $(DRUNTIME_DSOURCES_LINUX) $(DRUNTIME_DSOURCES_NETBSD) \
33         $(DRUNTIME_DSOURCES_OPENBSD) $(DRUNTIME_DSOURCES_POSIX) \
34         $(DRUNTIME_DSOURCES_SOLARIS) $(DRUNTIME_DSOURCES_WINDOWS) \
35         $(DRUNTIME_DSOURCES_GENERATED) $(DRUNTIME_DISOURCES) \
36         $(DRUNTIME_DSOURCES_STDCXX)
38 # Setup source files depending on configure
39 ALL_DRUNTIME_COMPILE_DSOURCES = $(DRUNTIME_DSOURCES)
40 # GC sources
41 if DRUNTIME_GC_ENABLE
42     ALL_DRUNTIME_COMPILE_DSOURCES += $(DRUNTIME_DSOURCES_GC)
43 else
44     ALL_DRUNTIME_COMPILE_DSOURCES += $(DRUNTIME_DSOURCES_GCSTUB)
45 endif
46 # OS specific sources
47 if DRUNTIME_OS_UNIX
48     ALL_DRUNTIME_COMPILE_DSOURCES += $(DRUNTIME_DSOURCES_POSIX)
49 endif
50 if DRUNTIME_OS_DARWIN
51     ALL_DRUNTIME_COMPILE_DSOURCES += $(DRUNTIME_DSOURCES_DARWIN)
52 endif
53 if DRUNTIME_OS_DRAGONFLYBSD
54     ALL_DRUNTIME_COMPILE_DSOURCES += $(DRUNTIME_DSOURCES_DRAGONFLYBSD)
55 endif
56 if DRUNTIME_OS_ANDROID
57     ALL_DRUNTIME_COMPILE_DSOURCES += $(DRUNTIME_DSOURCES_BIONIC)
58 endif
59 if DRUNTIME_OS_FREEBSD
60     ALL_DRUNTIME_COMPILE_DSOURCES += $(DRUNTIME_DSOURCES_FREEBSD)
61 endif
62 if DRUNTIME_OS_NETBSD
63     ALL_DRUNTIME_COMPILE_DSOURCES += $(DRUNTIME_DSOURCES_NETBSD)
64 endif
65 if DRUNTIME_OS_OPENBSD
66     ALL_DRUNTIME_COMPILE_DSOURCES += $(DRUNTIME_DSOURCES_OPENBSD)
67 endif
68 if DRUNTIME_OS_LINUX
69     ALL_DRUNTIME_COMPILE_DSOURCES += $(DRUNTIME_DSOURCES_LINUX)
70 endif
71 if DRUNTIME_OS_MINGW
72     ALL_DRUNTIME_COMPILE_DSOURCES += $(DRUNTIME_DSOURCES_WINDOWS)
73 endif
74 if DRUNTIME_OS_SOLARIS
75     ALL_DRUNTIME_COMPILE_DSOURCES += $(DRUNTIME_DSOURCES_SOLARIS)
76 endif
77 # Generated by configure
78 ALL_DRUNTIME_COMPILE_DSOURCES += $(DRUNTIME_DSOURCES_GENERATED)
80 ALL_DRUNTIME_SOURCES = $(ALL_DRUNTIME_COMPILE_DSOURCES) $(DRUNTIME_CSOURCES) \
81         $(DRUNTIME_SSOURCES)
82 REAL_DRUNTIME_TEST_LOBJECTS = $(ALL_DRUNTIME_COMPILE_DSOURCES:.d=.t.lo)
83 REAL_DRUNTIME_TEST_OBJECTS  = $(ALL_DRUNTIME_COMPILE_DSOURCES:.d=.t.o)
84 # Workaround issue #
85 DRUNTIME_TEST_OBJECTS  = $(filter-out rt/util/typeinfo.t.o \
86         core/internal/convert.t.o, $(REAL_DRUNTIME_TEST_OBJECTS)) \
87         rt/util/typeinfo.o core/internal/convert.o
89 DRUNTIME_TEST_LOBJECTS  = $(filter-out rt/util/typeinfo.t.lo \
90         core/internal/convert.t.lo, $(REAL_DRUNTIME_TEST_LOBJECTS)) \
91         rt/util/typeinfo.lo core/internal/convert.lo
94 # Main library build definitions
95 check_PROGRAMS =
96 if ENABLE_SHARED
97   check_LTLIBRARIES = libgdruntime_t.la
98   check_PROGRAMS += unittest
99 endif
100 if ENABLE_STATIC
101   check_PROGRAMS += unittest_static
102 endif
104 toolexeclib_LTLIBRARIES = libgdruntime.la
105 libgdruntime_la_SOURCES = $(ALL_DRUNTIME_SOURCES)
106 libgdruntime_la_LIBTOOLFLAGS =
107 libgdruntime_la_LDFLAGS = -Xcompiler -nophoboslib -version-info $(libtool_VERSION)
108 libgdruntime_la_LIBADD = $(LIBATOMIC) $(LIBBACKTRACE)
110 # For static unittest, link objects directly
111 unittest_static_SOURCES = ../testsuite/test_runner.d $(DRUNTIME_CSOURCES) \
112     $(DRUNTIME_SSOURCES)
113 unittest_static_LIBTOOLFLAGS =
114 unittest_static_LDFLAGS = -Xcompiler -nophoboslib
115 unittest_static_LDADD = $(DRUNTIME_TEST_OBJECTS) $(LIBATOMIC) $(LIBBACKTRACE)
116 EXTRA_unittest_static_DEPENDENCIES = $(DRUNTIME_TEST_OBJECTS)
118 # For unittest with dynamic library
119 libgdruntime_t_la_SOURCES = $(DRUNTIME_CSOURCES) $(DRUNTIME_SSOURCES)
120 libgdruntime_t_la_LIBTOOLFLAGS =
121 # Automake by default does not generate shared libs for non-installed
122 # libraries. Use -rpath to force shared lib generation.
123 libgdruntime_t_la_LDFLAGS = -Xcompiler -nophoboslib -rpath /foo -shared
124 libgdruntime_t_la_LIBADD = $(DRUNTIME_TEST_LOBJECTS) $(LIBATOMIC) $(LIBBACKTRACE)
125 EXTRA_libgdruntime_t_la_DEPENDENCIES = $(DRUNTIME_TEST_LOBJECTS)
127 # For unittest
128 unittest_SOURCES = ../testsuite/test_runner.d
129 unittest_LIBTOOLFLAGS =
130 unittest_LDFLAGS = -Xcompiler -nophoboslib
131 unittest_LDADD = libgdruntime_t.la
133 # Extra install and clean rules.
134 # This does not delete the .libs/.t.o files, but deleting
135 # the .lo is good enough to rerun the rules
136 clean-local:
137         rm -f $(DRUNTIME_TEST_LOBJECTS)
138         rm -f $(DRUNTIME_TEST_OBJECTS)
140 # Handles generated files as well
141 install-data-local:
142         for file in $(ALL_DRUNTIME_INSTALL_DSOURCES); do \
143           if test -f $$file; then \
144             $(INSTALL_HEADER) -D $$file $(DESTDIR)$(gdc_include_dir)/$$file ; \
145           else \
146             $(INSTALL_HEADER) -D $(srcdir)/$$file \
147               $(DESTDIR)$(gdc_include_dir)/$$file ; \
148           fi ; \
149         done
152 DRUNTIME_DSOURCES_GENERATED = gcc/config.d gcc/libbacktrace.d
153 # Source file definitions. Boring stuff, auto-generated with
154 # https://gist.github.com/jpf91/8ad1dbc9902d6ad876313f134c6527d1
155 # Can't use wildcards here:
156 # https://www.gnu.org/software/automake/manual/html_node/Wildcards.html
157 DRUNTIME_SSOURCES = core/threadasm.S
159 DRUNTIME_CSOURCES = core/stdc/errno_.c rt/bss_section.c
161 DRUNTIME_DSOURCES = core/atomic.d core/attribute.d core/bitop.d \
162         core/checkedint.d core/cpuid.d core/demangle.d core/exception.d \
163         core/internal/abort.d core/internal/arrayop.d core/internal/convert.d \
164         core/internal/hash.d core/internal/spinlock.d core/internal/string.d \
165         core/internal/traits.d core/math.d core/memory.d core/runtime.d \
166         core/simd.d core/stdc/assert_.d core/stdc/complex.d core/stdc/config.d \
167         core/stdc/ctype.d core/stdc/errno.d core/stdc/fenv.d \
168         core/stdc/float_.d core/stdc/inttypes.d core/stdc/limits.d \
169         core/stdc/locale.d core/stdc/math.d core/stdc/signal.d \
170         core/stdc/stdarg.d core/stdc/stddef.d core/stdc/stdint.d \
171         core/stdc/stdio.d core/stdc/stdlib.d core/stdc/string.d \
172         core/stdc/tgmath.d core/stdc/time.d core/stdc/wchar_.d \
173         core/stdc/wctype.d core/sync/barrier.d core/sync/condition.d \
174         core/sync/config.d core/sync/exception.d core/sync/mutex.d \
175         core/sync/rwmutex.d core/sync/semaphore.d core/thread.d core/time.d \
176         core/vararg.d gcc/attribute.d gcc/backtrace.d gcc/builtins.d gcc/deh.d \
177         gcc/unwind/arm.d gcc/unwind/arm_common.d gcc/unwind/c6x.d \
178         gcc/unwind/generic.d gcc/unwind/package.d gcc/unwind/pe.d object.d \
179         rt/aApply.d rt/aApplyR.d rt/aaA.d rt/adi.d rt/arrayassign.d \
180         rt/arraycast.d rt/arraycat.d rt/cast_.d rt/config.d rt/critical_.d \
181         rt/deh.d rt/dmain2.d rt/invariant.d rt/lifetime.d rt/memory.d \
182         rt/minfo.d rt/monitor_.d rt/obj.d rt/qsort.d rt/sections.d \
183         rt/sections_android.d rt/sections_elf_shared.d rt/sections_osx.d \
184         rt/sections_solaris.d rt/sections_win32.d rt/sections_win64.d \
185         rt/switch_.d rt/tlsgc.d rt/typeinfo/ti_Acdouble.d \
186         rt/typeinfo/ti_Acfloat.d rt/typeinfo/ti_Acreal.d \
187         rt/typeinfo/ti_Adouble.d rt/typeinfo/ti_Afloat.d rt/typeinfo/ti_Ag.d \
188         rt/typeinfo/ti_Aint.d rt/typeinfo/ti_Along.d rt/typeinfo/ti_Areal.d \
189         rt/typeinfo/ti_Ashort.d rt/typeinfo/ti_C.d rt/typeinfo/ti_byte.d \
190         rt/typeinfo/ti_cdouble.d rt/typeinfo/ti_cent.d rt/typeinfo/ti_cfloat.d \
191         rt/typeinfo/ti_char.d rt/typeinfo/ti_creal.d rt/typeinfo/ti_dchar.d \
192         rt/typeinfo/ti_delegate.d rt/typeinfo/ti_double.d \
193         rt/typeinfo/ti_float.d rt/typeinfo/ti_idouble.d \
194         rt/typeinfo/ti_ifloat.d rt/typeinfo/ti_int.d rt/typeinfo/ti_ireal.d \
195         rt/typeinfo/ti_long.d rt/typeinfo/ti_n.d rt/typeinfo/ti_ptr.d \
196         rt/typeinfo/ti_real.d rt/typeinfo/ti_short.d rt/typeinfo/ti_ubyte.d \
197         rt/typeinfo/ti_ucent.d rt/typeinfo/ti_uint.d rt/typeinfo/ti_ulong.d \
198         rt/typeinfo/ti_ushort.d rt/typeinfo/ti_void.d rt/typeinfo/ti_wchar.d \
199         rt/util/array.d rt/util/container/array.d rt/util/container/common.d \
200         rt/util/container/hashtab.d rt/util/container/treap.d rt/util/hash.d \
201         rt/util/random.d rt/util/typeinfo.d rt/util/utf.d
203 DRUNTIME_DSOURCES_STDCXX = core/stdcpp/exception.d \
204         core/stdcpp/typeinfo.d
206 DRUNTIME_DSOURCES_GC = gc/bits.d gc/config.d gc/gcinterface.d \
207         gc/impl/conservative/gc.d gc/impl/manual/gc.d gc/os.d gc/pooltable.d \
208         gc/proxy.d
210 DRUNTIME_DSOURCES_GCSTUB = gcstub/gc.d
212 DRUNTIME_DSOURCES_BIONIC = core/sys/bionic/fcntl.d \
213         core/sys/bionic/unistd.d
215 DRUNTIME_DSOURCES_DARWIN = core/sys/darwin/dlfcn.d \
216         core/sys/darwin/execinfo.d core/sys/darwin/mach/dyld.d \
217         core/sys/darwin/mach/getsect.d core/sys/darwin/mach/kern_return.d \
218         core/sys/darwin/mach/loader.d core/sys/darwin/mach/port.d \
219         core/sys/darwin/mach/semaphore.d core/sys/darwin/mach/thread_act.d \
220         core/sys/darwin/netinet/in_.d core/sys/darwin/pthread.d \
221         core/sys/darwin/sys/cdefs.d core/sys/darwin/sys/event.d \
222         core/sys/darwin/sys/mman.d
224 DRUNTIME_DSOURCES_DRAGONFLYBSD = core/sys/dragonflybsd/dlfcn.d \
225         core/sys/dragonflybsd/execinfo.d core/sys/dragonflybsd/netinet/in_.d \
226         core/sys/dragonflybsd/pthread_np.d core/sys/dragonflybsd/sys/_bitset.d \
227         core/sys/dragonflybsd/sys/_cpuset.d core/sys/dragonflybsd/sys/cdefs.d \
228         core/sys/dragonflybsd/sys/elf.d core/sys/dragonflybsd/sys/elf32.d \
229         core/sys/dragonflybsd/sys/elf64.d \
230         core/sys/dragonflybsd/sys/elf_common.d \
231         core/sys/dragonflybsd/sys/event.d core/sys/dragonflybsd/sys/link_elf.d \
232         core/sys/dragonflybsd/sys/mman.d core/sys/dragonflybsd/time.d
234 DRUNTIME_DSOURCES_FREEBSD = core/sys/freebsd/dlfcn.d \
235         core/sys/freebsd/execinfo.d core/sys/freebsd/netinet/in_.d \
236         core/sys/freebsd/pthread_np.d core/sys/freebsd/sys/_bitset.d \
237         core/sys/freebsd/sys/_cpuset.d core/sys/freebsd/sys/cdefs.d \
238         core/sys/freebsd/sys/elf.d core/sys/freebsd/sys/elf32.d \
239         core/sys/freebsd/sys/elf64.d core/sys/freebsd/sys/elf_common.d \
240         core/sys/freebsd/sys/event.d core/sys/freebsd/sys/link_elf.d \
241         core/sys/freebsd/sys/mman.d core/sys/freebsd/sys/mount.d \
242         core/sys/freebsd/time.d
244 DRUNTIME_DSOURCES_LINUX = core/sys/linux/config.d \
245         core/sys/linux/dlfcn.d core/sys/linux/elf.d core/sys/linux/epoll.d \
246         core/sys/linux/errno.d core/sys/linux/execinfo.d \
247         core/sys/linux/fcntl.d core/sys/linux/ifaddrs.d core/sys/linux/link.d \
248         core/sys/linux/netinet/in_.d core/sys/linux/netinet/tcp.d \
249         core/sys/linux/sched.d core/sys/linux/stdio.d \
250         core/sys/linux/sys/auxv.d core/sys/linux/sys/eventfd.d \
251         core/sys/linux/sys/file.d core/sys/linux/sys/inotify.d \
252         core/sys/linux/sys/mman.d core/sys/linux/sys/netinet/tcp.d \
253         core/sys/linux/sys/prctl.d core/sys/linux/sys/signalfd.d \
254         core/sys/linux/sys/socket.d core/sys/linux/sys/sysinfo.d \
255         core/sys/linux/sys/time.d core/sys/linux/sys/xattr.d \
256         core/sys/linux/termios.d core/sys/linux/time.d \
257         core/sys/linux/timerfd.d core/sys/linux/tipc.d core/sys/linux/unistd.d
259 DRUNTIME_DSOURCES_NETBSD = core/sys/netbsd/dlfcn.d \
260         core/sys/netbsd/execinfo.d core/sys/netbsd/sys/elf.d \
261         core/sys/netbsd/sys/elf32.d core/sys/netbsd/sys/elf64.d \
262         core/sys/netbsd/sys/elf_common.d core/sys/netbsd/sys/event.d \
263         core/sys/netbsd/sys/link_elf.d core/sys/netbsd/sys/mman.d \
264         core/sys/netbsd/time.d
266 DRUNTIME_DSOURCES_OPENBSD = core/sys/openbsd/dlfcn.d
268 DRUNTIME_DSOURCES_POSIX = core/sys/posix/aio.d \
269         core/sys/posix/arpa/inet.d core/sys/posix/config.d \
270         core/sys/posix/dirent.d core/sys/posix/dlfcn.d core/sys/posix/fcntl.d \
271         core/sys/posix/grp.d core/sys/posix/iconv.d core/sys/posix/inttypes.d \
272         core/sys/posix/libgen.d core/sys/posix/mqueue.d \
273         core/sys/posix/net/if_.d core/sys/posix/netdb.d \
274         core/sys/posix/netinet/in_.d core/sys/posix/netinet/tcp.d \
275         core/sys/posix/poll.d core/sys/posix/pthread.d core/sys/posix/pwd.d \
276         core/sys/posix/sched.d core/sys/posix/semaphore.d \
277         core/sys/posix/setjmp.d core/sys/posix/signal.d core/sys/posix/stdio.d \
278         core/sys/posix/stdlib.d core/sys/posix/sys/filio.d \
279         core/sys/posix/sys/ioccom.d core/sys/posix/sys/ioctl.d \
280         core/sys/posix/sys/ipc.d core/sys/posix/sys/mman.d \
281         core/sys/posix/sys/msg.d core/sys/posix/sys/resource.d \
282         core/sys/posix/sys/select.d core/sys/posix/sys/shm.d \
283         core/sys/posix/sys/socket.d core/sys/posix/sys/stat.d \
284         core/sys/posix/sys/statvfs.d core/sys/posix/sys/time.d \
285         core/sys/posix/sys/ttycom.d core/sys/posix/sys/types.d \
286         core/sys/posix/sys/uio.d core/sys/posix/sys/un.d \
287         core/sys/posix/sys/utsname.d core/sys/posix/sys/wait.d \
288         core/sys/posix/syslog.d core/sys/posix/termios.d core/sys/posix/time.d \
289         core/sys/posix/ucontext.d core/sys/posix/unistd.d \
290         core/sys/posix/utime.d
292 DRUNTIME_DSOURCES_SOLARIS = core/sys/solaris/dlfcn.d \
293         core/sys/solaris/elf.d core/sys/solaris/execinfo.d \
294         core/sys/solaris/libelf.d core/sys/solaris/link.d \
295         core/sys/solaris/sys/elf.d core/sys/solaris/sys/elf_386.d \
296         core/sys/solaris/sys/elf_SPARC.d core/sys/solaris/sys/elf_amd64.d \
297         core/sys/solaris/sys/elf_notes.d core/sys/solaris/sys/elftypes.d \
298         core/sys/solaris/sys/link.d core/sys/solaris/sys/priocntl.d \
299         core/sys/solaris/sys/procset.d core/sys/solaris/sys/types.d \
300         core/sys/solaris/time.d
302 DRUNTIME_DSOURCES_WINDOWS = core/sys/windows/accctrl.d \
303         core/sys/windows/aclapi.d core/sys/windows/aclui.d \
304         core/sys/windows/basetsd.d core/sys/windows/basetyps.d \
305         core/sys/windows/cderr.d core/sys/windows/cguid.d \
306         core/sys/windows/com.d core/sys/windows/comcat.d \
307         core/sys/windows/commctrl.d core/sys/windows/commdlg.d \
308         core/sys/windows/core.d core/sys/windows/cpl.d \
309         core/sys/windows/cplext.d core/sys/windows/custcntl.d \
310         core/sys/windows/dbghelp.d core/sys/windows/dbghelp_types.d \
311         core/sys/windows/dbt.d core/sys/windows/dde.d core/sys/windows/ddeml.d \
312         core/sys/windows/dhcpcsdk.d core/sys/windows/dlgs.d \
313         core/sys/windows/dll.d core/sys/windows/docobj.d \
314         core/sys/windows/errorrep.d core/sys/windows/exdisp.d \
315         core/sys/windows/exdispid.d core/sys/windows/httpext.d \
316         core/sys/windows/idispids.d core/sys/windows/imagehlp.d \
317         core/sys/windows/imm.d core/sys/windows/intshcut.d \
318         core/sys/windows/ipexport.d core/sys/windows/iphlpapi.d \
319         core/sys/windows/ipifcons.d core/sys/windows/iprtrmib.d \
320         core/sys/windows/iptypes.d core/sys/windows/isguids.d \
321         core/sys/windows/lm.d core/sys/windows/lmaccess.d \
322         core/sys/windows/lmalert.d core/sys/windows/lmapibuf.d \
323         core/sys/windows/lmat.d core/sys/windows/lmaudit.d \
324         core/sys/windows/lmbrowsr.d core/sys/windows/lmchdev.d \
325         core/sys/windows/lmconfig.d core/sys/windows/lmcons.d \
326         core/sys/windows/lmerr.d core/sys/windows/lmerrlog.d \
327         core/sys/windows/lmmsg.d core/sys/windows/lmremutl.d \
328         core/sys/windows/lmrepl.d core/sys/windows/lmserver.d \
329         core/sys/windows/lmshare.d core/sys/windows/lmsname.d \
330         core/sys/windows/lmstats.d core/sys/windows/lmsvc.d \
331         core/sys/windows/lmuse.d core/sys/windows/lmuseflg.d \
332         core/sys/windows/lmwksta.d core/sys/windows/lzexpand.d \
333         core/sys/windows/mapi.d core/sys/windows/mciavi.d \
334         core/sys/windows/mcx.d core/sys/windows/mgmtapi.d \
335         core/sys/windows/mmsystem.d core/sys/windows/msacm.d \
336         core/sys/windows/mshtml.d core/sys/windows/mswsock.d \
337         core/sys/windows/nb30.d core/sys/windows/nddeapi.d \
338         core/sys/windows/nspapi.d core/sys/windows/ntdef.d \
339         core/sys/windows/ntdll.d core/sys/windows/ntldap.d \
340         core/sys/windows/ntsecapi.d core/sys/windows/ntsecpkg.d \
341         core/sys/windows/oaidl.d core/sys/windows/objbase.d \
342         core/sys/windows/objfwd.d core/sys/windows/objidl.d \
343         core/sys/windows/objsafe.d core/sys/windows/ocidl.d \
344         core/sys/windows/odbcinst.d core/sys/windows/ole.d \
345         core/sys/windows/ole2.d core/sys/windows/ole2ver.d \
346         core/sys/windows/oleacc.d core/sys/windows/oleauto.d \
347         core/sys/windows/olectl.d core/sys/windows/olectlid.d \
348         core/sys/windows/oledlg.d core/sys/windows/oleidl.d \
349         core/sys/windows/pbt.d core/sys/windows/powrprof.d \
350         core/sys/windows/prsht.d core/sys/windows/psapi.d \
351         core/sys/windows/rapi.d core/sys/windows/ras.d \
352         core/sys/windows/rasdlg.d core/sys/windows/raserror.d \
353         core/sys/windows/rassapi.d core/sys/windows/reason.d \
354         core/sys/windows/regstr.d core/sys/windows/richedit.d \
355         core/sys/windows/richole.d core/sys/windows/rpc.d \
356         core/sys/windows/rpcdce.d core/sys/windows/rpcdce2.d \
357         core/sys/windows/rpcdcep.d core/sys/windows/rpcndr.d \
358         core/sys/windows/rpcnsi.d core/sys/windows/rpcnsip.d \
359         core/sys/windows/rpcnterr.d core/sys/windows/schannel.d \
360         core/sys/windows/secext.d core/sys/windows/security.d \
361         core/sys/windows/servprov.d core/sys/windows/setupapi.d \
362         core/sys/windows/shellapi.d core/sys/windows/shldisp.d \
363         core/sys/windows/shlguid.d core/sys/windows/shlobj.d \
364         core/sys/windows/shlwapi.d core/sys/windows/snmp.d \
365         core/sys/windows/sql.d core/sys/windows/sqlext.d \
366         core/sys/windows/sqltypes.d core/sys/windows/sqlucode.d \
367         core/sys/windows/sspi.d core/sys/windows/stacktrace.d \
368         core/sys/windows/stat.d core/sys/windows/subauth.d \
369         core/sys/windows/threadaux.d core/sys/windows/tlhelp32.d \
370         core/sys/windows/tmschema.d core/sys/windows/unknwn.d \
371         core/sys/windows/uuid.d core/sys/windows/vfw.d \
372         core/sys/windows/w32api.d core/sys/windows/winbase.d \
373         core/sys/windows/winber.d core/sys/windows/wincon.d \
374         core/sys/windows/wincrypt.d core/sys/windows/windef.d \
375         core/sys/windows/windows.d core/sys/windows/winerror.d \
376         core/sys/windows/wingdi.d core/sys/windows/winhttp.d \
377         core/sys/windows/wininet.d core/sys/windows/winioctl.d \
378         core/sys/windows/winldap.d core/sys/windows/winnetwk.d \
379         core/sys/windows/winnls.d core/sys/windows/winnt.d \
380         core/sys/windows/winperf.d core/sys/windows/winreg.d \
381         core/sys/windows/winsock2.d core/sys/windows/winspool.d \
382         core/sys/windows/winsvc.d core/sys/windows/winuser.d \
383         core/sys/windows/winver.d core/sys/windows/wtsapi32.d \
384         core/sys/windows/wtypes.d
386 DRUNTIME_DISOURCES = __entrypoint.di __main.di