Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
Update Makefile for Win32/Win64.
Browse files Browse the repository at this point in the history
  • Loading branch information
Iain Buclaw committed Sep 12, 2012
1 parent f2d0f68 commit 4cd6633
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 20 deletions.
14 changes: 4 additions & 10 deletions win32.mak
Expand Up @@ -167,7 +167,6 @@ MANIFEST= \
src\rt\cmath2.d \
src\rt\complex.c \
src\rt\cover.d \
src\rt\critical.c \
src\rt\critical_.d \
src\rt\deh.d \
src\rt\deh2.d \
Expand All @@ -184,7 +183,6 @@ MANIFEST= \
src\rt\memset.d \
src\rt\minfo.d \
src\rt\minit.asm \
src\rt\monitor.c \
src\rt\monitor_.d \
src\rt\obj.d \
src\rt\qsort.d \
Expand Down Expand Up @@ -300,6 +298,7 @@ SRCS= \
src\rt\arrayshort.d \
src\rt\cast_.d \
src\rt\cover.d \
src\rt\critical_.d \
src\rt\deh.d \
src\rt\dmain2.d \
src\rt\invariant.d \
Expand All @@ -309,6 +308,7 @@ SRCS= \
src\rt\memory.d \
src\rt\memset.d \
src\rt\minfo.d \
src\rt\monitor_.d \
src\rt\obj.d \
src\rt\qsort.d \
src\rt\switch_.d \
Expand Down Expand Up @@ -361,8 +361,8 @@ SRCS= \
# NOTE: a pre-compiled minit.obj has been provided in dmd for Win32 and
# minit.asm is not used by dmd for Linux

OBJS= errno_c.obj complex.obj src\rt\minit.obj monitor.obj critical.obj
OBJS_TO_DELETE= errno_c.obj complex.obj monitor.obj critical.obj
OBJS= errno_c.obj complex.obj src\rt\minit.obj
OBJS_TO_DELETE= errno_c.obj complex.obj

DOCS=\
$(DOCDIR)\object.html \
Expand Down Expand Up @@ -866,12 +866,6 @@ complex.obj : src\rt\complex.c
src\rt\minit.obj : src\rt\minit.asm
$(CC) -c $(CFLAGS) src\rt\minit.asm

critical.obj : src\rt\critical.c
$(CC) -c $(CFLAGS) src\rt\critical.c

monitor.obj : src\rt\monitor.c
$(CC) -c $(CFLAGS) src\rt\monitor.c

################### gcstub generation #########################

$(GCSTUB) : src\gcstub\gc.d win$(MODEL).mak
Expand Down
14 changes: 4 additions & 10 deletions win64.mak
Expand Up @@ -174,7 +174,6 @@ MANIFEST= \
src\rt\cmath2.d \
src\rt\complex.c \
src\rt\cover.d \
src\rt\critical.c \
src\rt\critical_.d \
src\rt\deh.d \
src\rt\deh2.d \
Expand All @@ -191,7 +190,6 @@ MANIFEST= \
src\rt\memset.d \
src\rt\minfo.d \
src\rt\minit.asm \
src\rt\monitor.c \
src\rt\monitor_.d \
src\rt\obj.d \
src\rt\qsort.d \
Expand Down Expand Up @@ -307,6 +305,7 @@ SRCS= \
src\rt\arrayshort.d \
src\rt\cast_.d \
src\rt\cover.d \
src\rt\critical_.d \
src\rt\deh2.d \
src\rt\dmain2.d \
src\rt\invariant.d \
Expand All @@ -316,6 +315,7 @@ SRCS= \
src\rt\memory.d \
src\rt\memset.d \
src\rt\minfo.d \
src\rt\monitor_.d \
src\rt\obj.d \
src\rt\qsort.d \
src\rt\switch_.d \
Expand Down Expand Up @@ -368,8 +368,8 @@ SRCS= \
# NOTE: a pre-compiled minit.obj has been provided in dmd for Win32 and
# minit.asm is not used by dmd for Linux

OBJS= errno_c.obj complex.obj monitor.obj critical.obj
OBJS_TO_DELETE= errno_c.obj complex.obj monitor.obj critical.obj
OBJS= errno_c.obj complex.obj
OBJS_TO_DELETE= errno_c.obj complex.obj

DOCS=\
$(DOCDIR)\object.html \
Expand Down Expand Up @@ -873,12 +873,6 @@ complex.obj : src\rt\complex.c
src\rt\minit.obj : src\rt\minit.asm
$(CC) -c $(CFLAGS) src\rt\minit.asm

critical.obj : src\rt\critical.c
$(CC) -c $(CFLAGS) src\rt\critical.c

monitor.obj : src\rt\monitor.c
$(CC) -c $(CFLAGS) src\rt\monitor.c

################### gcstub generation #########################

$(GCSTUB) : src\gcstub\gc.d win$(MODEL).mak
Expand Down

0 comments on commit 4cd6633

Please sign in to comment.