Fixed spacing issue in clean rule of solution makefile

This commit is contained in:
starkos 2009-04-21 19:38:16 +00:00
parent 3160a6b32b
commit 60d913a9b8

View File

@ -61,6 +61,8 @@
-- clean rules
_p('clean:')
for _ ,prj in ipairs(sln.projects) do
_p(' @${MAKE} --no-print-directory -C %s -f %s clean', _MAKE.esc(path.getrelative(sln.location, prj.location)), _MAKE.esc(_MAKE.getmakefilename(prj, true)))
_p('\t@${MAKE} --no-print-directory -C %s -f %s clean', _MAKE.esc(path.getrelative(sln.location, prj.location)), _MAKE.esc(_MAKE.getmakefilename(prj, true)))
end
_p('')
end