Skip to content

Commit

Permalink
Add stubs for install make recipes
Browse files Browse the repository at this point in the history
This allows the auto-tester to build without complaint, even though it ultimately does nothing
  • Loading branch information
ibuclaw authored and Geod24 committed Jul 9, 2022
1 parent 71c0cf6 commit 92d444f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
4 changes: 2 additions & 2 deletions posix.mak
Expand Up @@ -42,8 +42,8 @@ doc:
# zip:
# $(QUIET)$(MAKE) -C $(DMD_DIR)/druntime -f posix.mak $@

# install:
# $(QUIET)$(MAKE) -C $(DMD_DIR)/druntime -f posix.mak $@
install:
echo "Posix builds have been disabled"

# clean:
# $(QUIET)$(MAKE) -C $(DMD_DIR)/druntime -f posix.mak $@
Expand Down
5 changes: 2 additions & 3 deletions win32.mak
Expand Up @@ -71,9 +71,8 @@ import:
# cd $(DMD_DIR)/druntime
# $(MAKE_WIN32) $@

# install:
# cd $(DMD_DIR)/druntime
# $(MAKE_WIN32) $@
install:
echo "Windows builds have been disabled"

# clean:
# cd $(DMD_DIR)/druntime
Expand Down
5 changes: 2 additions & 3 deletions win64.mak
Expand Up @@ -74,9 +74,8 @@ import:
# cd $(DMD_DIR)/druntime
# $(MAKE_WIN32) $@

# install:
# cd $(DMD_DIR)/druntime
# $(MAKE_WIN32) $@
install:
echo "Windows builds have been disabled"

# clean:
# cd $(DMD_DIR)/druntime
Expand Down

0 comments on commit 92d444f

Please sign in to comment.