diff --git a/mak/COPY b/mak/COPY index 3b5fa33d982..d21ec103c01 100644 --- a/mak/COPY +++ b/mak/COPY @@ -1,5 +1,6 @@ COPY=\ $(IMPDIR)\object.d \ + \ $(IMPDIR)\core\atomic.d \ $(IMPDIR)\core\attribute.d \ $(IMPDIR)\core\bitop.d \ diff --git a/mak/SRCS b/mak/SRCS index 90e795f7c55..10783938a90 100644 --- a/mak/SRCS +++ b/mak/SRCS @@ -23,10 +23,15 @@ SRCS=\ src\core\internal\string.d \ src\core\internal\traits.d \ \ + src\core\stdc\complex.d \ src\core\stdc\config.d \ src\core\stdc\ctype.d \ src\core\stdc\errno.d \ src\core\stdc\fenv.d \ + src\core\stdc\float_.d \ + src\core\stdc\inttypes.d \ + src\core\stdc\limits.d \ + src\core\stdc\locale.d \ src\core\stdc\math.d \ src\core\stdc\signal.d \ src\core\stdc\stdarg.d \ @@ -51,19 +56,36 @@ SRCS=\ \ src\core\sys\linux\stdio.d \ src\core\sys\linux\tipc.d \ + src\core\sys\linux\sys\inotify.d \ + src\core\sys\linux\sys\mman.d \ + src\core\sys\linux\sys\signalfd.d \ + src\core\sys\linux\sys\socket.d \ + src\core\sys\linux\sys\sysinfo.d \ + src\core\sys\linux\sys\time.d \ + src\core\sys\linux\sys\xattr.d \ + src\core\sys\linux\sys\netinet\tcp.d \ \ - src\core\sys\posix\signal.d \ src\core\sys\posix\dirent.d \ + src\core\sys\posix\signal.d \ + src\core\sys\posix\netdb.d \ + src\core\sys\posix\netinet\in_.d \ + src\core\sys\posix\arpa\inet.d \ + \ + src\core\sys\posix\sys\ioctl.d \ + src\core\sys\posix\sys\ipc.d \ + src\core\sys\posix\sys\mman.d \ src\core\sys\posix\sys\resource.d \ src\core\sys\posix\sys\select.d \ + src\core\sys\posix\sys\shm.d \ src\core\sys\posix\sys\socket.d \ src\core\sys\posix\sys\stat.d \ + src\core\sys\posix\sys\statvfs.d \ + src\core\sys\posix\sys\time.d \ + src\core\sys\posix\sys\types.d \ + src\core\sys\posix\sys\uio.d \ + src\core\sys\posix\sys\un.d \ src\core\sys\posix\sys\wait.d \ - src\core\sys\posix\netdb.d \ - src\core\sys\posix\sys\ioctl.d \ src\core\sys\posix\sys\utsname.d \ - src\core\sys\posix\netinet\in_.d \ - src\core\sys\posix\arpa\inet.d \ \ src\core\sys\solaris\sys\priocntl.d \ src\core\sys\solaris\sys\types.d \ diff --git a/win32.mak b/win32.mak index bf3bee7168c..0f08fb31dc9 100644 --- a/win32.mak +++ b/win32.mak @@ -1281,10 +1281,10 @@ $(GCSTUB) : src\gcstub\gc.d win$(MODEL).mak ################### Library generation ######################### $(DRUNTIME): $(OBJS) $(SRCS) win$(MODEL).mak - $(DMD) -lib -of$(DRUNTIME) -Xfdruntime.json $(DFLAGS) $(SRCS) $(OBJS) + *$(DMD) -lib -of$(DRUNTIME) -Xfdruntime.json $(DFLAGS) $(SRCS) $(OBJS) unittest : $(SRCS) $(DRUNTIME) - $(DMD) $(UDFLAGS) -L/co -unittest -ofunittest.exe -main $(SRCS) $(DRUNTIME) -debuglib=$(DRUNTIME) -defaultlib=$(DRUNTIME) + *$(DMD) $(UDFLAGS) -L/co -unittest -ofunittest.exe -main $(SRCS) $(DRUNTIME) -debuglib=$(DRUNTIME) -defaultlib=$(DRUNTIME) unittest zip: druntime.zip @@ -1305,4 +1305,3 @@ clean: auto-tester-build: target auto-tester-test: unittest -