From a01621dc1e84ed4fa5ebeb438fc2a5dedd9de569 Mon Sep 17 00:00:00 2001 From: Alex Young Date: Wed, 30 May 2012 15:06:06 +0100 Subject: [PATCH] Added .h files to the Rakefile --- Rakefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 )