diff options
author | Alexander Sulfrian <alexander@sulfrian.net> | 2010-01-07 00:47:04 +0100 |
---|---|---|
committer | Alexander Sulfrian <alexander@sulfrian.net> | 2013-01-05 17:17:43 +0100 |
commit | 60233728c913bb419551e0315cd2fa6c09fdf10b (patch) | |
tree | 4c5a1d182f57e64f4160e3029657b3f7fb48d7ea /test | |
parent | 19d2a7165559e5fc55e9128553433ee9fedb4bd8 (diff) | |
download | usdx-60233728c913bb419551e0315cd2fa6c09fdf10b.tar.gz usdx-60233728c913bb419551e0315cd2fa6c09fdf10b.tar.xz usdx-60233728c913bb419551e0315cd2fa6c09fdf10b.zip |
removed hacky workaround
Diffstat (limited to 'test')
-rw-r--r-- | test/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/Makefile b/test/Makefile index 2b8eef7b..809466c1 100644 --- a/test/Makefile +++ b/test/Makefile @@ -25,8 +25,7 @@ $(TARGET): $(objects) $(deps) $(CXX) $(CXXFLAGS) -MMD -c $< -o $@ %.d: %.cpp - $(CXX) $(CXXFLAGS) -MMD -E -c $< -o $(@:.d=.tmp) - rm $(@:.d=.tmp) + $(CXX) $(CXXFLAGS) -MM -c $< -MF $@ clean: -$(RM) $(TARGET) $(objects) $(deps) |