1
0
mirror of https://github.com/ThrowTheSwitch/Unity.git synced 2026-01-29 19:24:27 +01:00

- updated fixture to match James' suggestions.

git-svn-id: http://unity.svn.sourceforge.net/svnroot/unity/trunk@124 e7d17a6e-8845-0410-bbbc-c8efb4fdad7e
This commit is contained in:
mvandervoord
2011-03-09 02:05:05 +00:00
parent 3ef64ee047
commit 3d61357343
6 changed files with 17 additions and 12 deletions

View File

@@ -24,11 +24,7 @@ module RakefileHelpers
end
def configure_clean
unless $cfg['compiler']['build_path'].nil?
CLEAN.include($cfg['compiler']['build_path'] + "*#{$cfg['compiler']['object_files']['extension']}")
CLEAN.include($cfg['compiler']['build_path'] + "*#{$cfg['linker']['bin_files']['extension']}")
CLEAN.include($cfg['compiler']['build_path'] + "*.test*")
end
CLEAN.include($cfg['compiler']['build_path'] + '*.*') unless $cfg['compiler']['build_path'].nil?
end
def configure_toolchain(config_file=DEFAULT_CONFIG_FILE)
@@ -151,7 +147,6 @@ module RakefileHelpers
# Get a list of all source files needed
src_files = Dir[HERE+'src/*.c']
src_files += Dir[HERE+'main/*.c']
src_files += Dir[HERE+'test/*.c']
src_files << '../../src/Unity.c'