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 #1483 from MartinNowak/fix15224
Browse files Browse the repository at this point in the history
fix Issue 15224 - making 'clean' results in garbage commands
  • Loading branch information
DmitryOlshansky committed Mar 9, 2016
2 parents a8e5db2 + 4e8c349 commit 236c43b
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion test/common.mak
Expand Up @@ -11,7 +11,8 @@ TIMELIMIT:=
LDL:=$(subst -L,,$(LINKDL)) # -ldl

SRC:=src
ROOT:=./generated/$(OS)/$(BUILD)/$(MODEL)
GENERATED:=./generated
ROOT:=$(GENERATED)/$(OS)/$(BUILD)/$(MODEL)

ifneq (default,$(MODEL))
MODEL_FLAG:=-m$(MODEL)
Expand Down
2 changes: 1 addition & 1 deletion test/coverage/Makefile
Expand Up @@ -39,4 +39,4 @@ $(ROOT)/%: $(SRC)/%.d
$(QUIET)$(DMD) $(DFLAGS) -of$(ROOT)/$* $^

clean:
rm -rf $(ROOT) *.lst
rm -rf $(GENERATED) *.lst
2 changes: 1 addition & 1 deletion test/exceptions/Makefile
Expand Up @@ -35,4 +35,4 @@ $(ROOT)/%: $(SRC)/%.d
$(QUIET)$(DMD) $(DFLAGS) -of$@ $<

clean:
rm -rf $(ROOT)
rm -rf $(GENERATED)
2 changes: 1 addition & 1 deletion test/profile/Makefile
Expand Up @@ -41,4 +41,4 @@ $(ROOT)/%: $(SRC)/%.d
$(QUIET)$(DMD) $(DFLAGS) -of$(ROOT)/$* $<

clean:
rm -rf $(ROOT) *.log *.def
rm -rf $(GENERATED) *.log *.def
2 changes: 1 addition & 1 deletion test/shared/Makefile
Expand Up @@ -72,4 +72,4 @@ $(ROOT)/%.so: $(SRC)/%.d $(DRUNTIMESO)
$(QUIET)$(DMD) -fPIC -shared $(DFLAGS) -of$@ $< $(LINKDL)

clean:
rm -rf $(ROOT)
rm -rf $(GENERATED)

0 comments on commit 236c43b

Please sign in to comment.