src/fight.c: In function `damage':
src/fight.c:2221: warning: passing arg 1 of `act' makes integer from pointer without a cast
src/fight.c:2221: warning: passing arg 2 of `act' from incompatible pointer type
src/fight.c:2221: error: too few arguments to function `act'
src/fight.c:2229: warning: passing arg 1 of `act' makes integer from pointer without a cast
src/fight.c:2229: warning: passing arg 2 of `act' from incompatible pointer type
src/fight.c:2229: error: too few arguments to function `act'
You might also want to look into why your Makefile seems to be compiling things from one level above the src directory as the standard FUSS packages do all that from the src directory itself and the error output when there is a problem does not include mention of the src directory.
src/fight.c: In function `damage':
src/fight.c:2221: warning: passing arg 1 of `act' makes integer from pointer without a cast
src/fight.c:2221: warning: passing arg 2 of `act' from incompatible pointer type
src/fight.c:2221: error: too few arguments to function `act'
src/fight.c:2229: warning: passing arg 1 of `act' makes integer from pointer without a cast
src/fight.c:2229: warning: passing arg 2 of `act' from incompatible pointer type
src/fight.c:2229: error: too few arguments to function `act'
See, leaving out that you were using DevC++ in your original post delays any kind of solution you might have received. Since this is still considered experimental and not officially supported we could have possibly worked this out 2 days ago.
Anyway. In order to know what it's complaining about, we will need to see the code in fight.c from lines 2220 through 2230, with the complaining lines in your error messages marked so we can see what's going on.
Is SmaugFUZZ something different from SmaugFUSS? Never heard of the first one...
If we're talking about SmaugFUSS, I'm not sure if DevC++ is supported yet. It's possible that the makefile assumes GCC, and since you're using a different compiler, things might not work. You could just try removing the two offending flags, and see if that works...