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

Commit

Permalink
Merge pull request #1299 from braddr/change-target
Browse files Browse the repository at this point in the history
add auto-tester specific targets
  • Loading branch information
schveiguy committed Jun 8, 2015
2 parents 9800c1c + dc9f00e commit e24ceb9
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 0 deletions.
7 changes: 7 additions & 0 deletions posix.mak
Expand Up @@ -229,3 +229,10 @@ clean: $(addsuffix /.clean,$(ADDITIONAL_TESTS))

test/%/.clean: test/%/Makefile
$(MAKE) -C test/$* clean

.PHONY : auto-tester-build
auto-tester-build: target

.PHONY : auto-tester-test
auto-tester-test: unittest

5 changes: 5 additions & 0 deletions win32.mak
Expand Up @@ -662,3 +662,8 @@ install: druntime.zip
clean:
del $(DRUNTIME) $(OBJS_TO_DELETE) $(GCSTUB)
rmdir /S /Q $(DOCDIR) $(IMPDIR)

auto-tester-build: target

auto-tester-test: unittest

5 changes: 5 additions & 0 deletions win64.mak
Expand Up @@ -686,3 +686,8 @@ install: druntime.zip
clean:
del $(DRUNTIME) $(OBJS_TO_DELETE) $(GCSTUB)
rmdir /S /Q $(DOCDIR) $(IMPDIR)

auto-tester-build: target

auto-tester-test: unittest

0 comments on commit e24ceb9

Please sign in to comment.