Skip to content

Commit 97b2957

Browse files
committed
Don't make anything in src/std/linked
Cleaning src/std/linked would fail on Windows, and there should never be anything to make in here to begin with.
1 parent 51c428f commit 97b2957

File tree

2 files changed

+2
-38
lines changed

2 files changed

+2
-38
lines changed

src/std/linked/makefile

Lines changed: 0 additions & 36 deletions
This file was deleted.

src/std/makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,13 @@ endif
5151
all:
5252
$(MAKE) -C $(FILEIODIR) BIN=$(BIN)
5353
$(MAKE) -C $(STATICDIR) BIN=$(BIN)
54-
$(MAKE) -C $(LINKEDDIR) BIN=$(BIN)
54+
# $(MAKE) -C $(LINKEDDIR) BIN=$(BIN) # nothing to do
5555
$(MAKE) -C $(SHAREDDIR) BIN=$(BIN)
5656

5757
clean:
5858
$(MAKE) -C $(FILEIODIR) $(MAKECMDGOALS)
5959
$(MAKE) -C $(SHAREDDIR) $(MAKECMDGOALS)
60-
$(MAKE) -C $(LINKEDDIR) $(MAKECMDGOALS)
60+
# $(MAKE) -C $(LINKEDDIR) $(MAKECMDGOALS) # nothing to do
6161
$(MAKE) -C $(STATICDIR) $(MAKECMDGOALS)
6262

6363
install:

0 commit comments

Comments
 (0)