Skip to content

Commit af90a85

Browse files
committed
Removed silences on RM commands in Makefiles
1 parent b7a76b0 commit af90a85

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

engine/render/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ all: $(renderLib) $(vertObjects) $(fragObjects)
3434

3535
# Build the static library
3636
$(renderLib): $(renderObjects)
37-
-$(RM) $(call platformpth,$(renderLib))
37+
$(RM) $(call platformpth,$(renderLib))
3838
$(call COMBINE_LIBS, $(renderLibs), $(renderObjects), $(libDir), render)
3939

4040
# Add all rules from dependency files

engine/window/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ compileFlags += -I $(vendorDir)/glfw/include
2121

2222
# Build the static library
2323
$(windowLib): $(windowObjects)
24-
-$(RM) $(call platformpth,$(windowLib))
24+
$(RM) $(call platformpth,$(windowLib))
2525
$(call COMBINE_LIBS, $(windowLibs), $(windowObjects), $(libDir), window)
2626

2727
# Add all rules from dependency files

0 commit comments

Comments
 (0)