diff --git a/Rakefile b/Rakefile index 89f9cf1..beebc72 100644 --- a/Rakefile +++ b/Rakefile @@ -1,6 +1,7 @@ DEBUG = true -SOURCES = FileList['src/*.c'] +ALL_SOURCES =FileList['src/*'] +SOURCES = ALL_SOURCES.select { |c| c =~ /\.c$/ } OBJECTS = SOURCES.pathmap( "%{^src,build}X.o" ) LIBS = %w( pthread )