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

Commit

Permalink
remove object.di, rename object_.d to object.d
Browse files Browse the repository at this point in the history
  • Loading branch information
rainers committed May 9, 2015
1 parent 2c74db0 commit c1b4f36
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 929 deletions.
2 changes: 1 addition & 1 deletion mak/COPY
@@ -1,5 +1,5 @@
COPY=\
$(IMPDIR)\object.di \
$(IMPDIR)\object.d \
$(IMPDIR)\core\atomic.d \
$(IMPDIR)\core\bitop.d \
$(IMPDIR)\core\checkedint.d \
Expand Down
3 changes: 1 addition & 2 deletions mak/MANIFEST
Expand Up @@ -13,8 +13,7 @@ MANIFEST=\
mak\MANIFEST \
mak\SRCS \
\
src\object_.d \
src\object.di \
src\object.d \
src\test_runner.d \
\
src\core\atomic.d \
Expand Down
2 changes: 1 addition & 1 deletion mak/SRCS
@@ -1,5 +1,5 @@
SRCS=\
src\object_.d \
src\object.d \
\
src\core\atomic.d \
src\core\bitop.d \
Expand Down
5 changes: 3 additions & 2 deletions posix.mak
Expand Up @@ -121,7 +121,7 @@ endif

doc: $(DOCS)

$(DOCDIR)/object.html : src/object_.d
$(DOCDIR)/object.html : src/object.d
$(DMD) $(DDOCFLAGS) -Df$@ project.ddoc $(DOCFMT) $<

$(DOCDIR)/core_%.html : src/core/%.d
Expand All @@ -145,8 +145,9 @@ $(IMPDIR)/core/sync/%.di : src/core/sync/%.d

copy: $(COPY)

$(IMPDIR)/object.di : src/object_.d
$(IMPDIR)/object.d : src/object.d
@mkdir -p `dirname $@`
@rm -f $(IMPDIR)/object.di
cp $< $@

$(IMPDIR)/%.di : src/%.di
Expand Down
File renamed without changes.

0 comments on commit c1b4f36

Please sign in to comment.