diff --git a/Rakefile b/Rakefile index 2b90f0d..64c701e 100644 --- a/Rakefile +++ b/Rakefile @@ -114,7 +114,7 @@ end def gcc_compile( target, source ) FileUtils.mkdir_p File.dirname( target ) - sh "#{CC} -Isrc -c #{CCFLAGS.join(' ')} -o #{target} #{source} " + sh "#{CC} -I/usr/include/libev -Isrc -c #{CCFLAGS.join(' ')} -o #{target} #{source} " end def gcc_link(target, objects)