Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJason Perkins <starkos@industriousone.com>2012-09-06 02:30:02 +0400
committerJason Perkins <starkos@industriousone.com>2012-09-06 02:30:02 +0400
commit00fdae710783c2b54393e783be6c2d2a8c348860 (patch)
tree17c7bb0583fe8eaf5380b114efd9e0c9986e5a93 /tests
parent71e0fee0bf3b8d8ec4f0497e19b7b494558b5e91 (diff)
Patch 3476176: Fix dependencies of precompiled header in makefile
Diffstat (limited to 'tests')
-rw-r--r--tests/actions/make/test_make_pch.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/actions/make/test_make_pch.lua b/tests/actions/make/test_make_pch.lua
index f52bf3e..ee48a1b 100644
--- a/tests/actions/make/test_make_pch.lua
+++ b/tests/actions/make/test_make_pch.lua
@@ -73,7 +73,7 @@ ifeq (posix,$(SHELLTYPE))
else
$(SILENT) xcopy /D /Y /Q "$(subst /,\,$<)" "$(subst /,\,$(OBJDIR))" 1>nul
endif
- $(SILENT) $(CXX) $(CXXFLAGS) -o "$@" -MF $(@:%.o=%.d) -c "$<"
+ $(SILENT) $(CXX) $(CXXFLAGS) -o "$@" -MF $(@:%.gch=%.d) -c "$<"
endif
]]
end
@@ -92,7 +92,7 @@ ifeq (posix,$(SHELLTYPE))
else
$(SILENT) xcopy /D /Y /Q "$(subst /,\,$<)" "$(subst /,\,$(OBJDIR))" 1>nul
endif
- $(SILENT) $(CC) $(CFLAGS) -o "$@" -MF $(@:%.o=%.d) -c "$<"
+ $(SILENT) $(CC) $(CFLAGS) -o "$@" -MF $(@:%.gch=%.d) -c "$<"
endif
]]
end