Added .h files to the Rakefile

This commit is contained in:
Alex Young
2012-05-30 15:06:06 +01:00
parent 7832958522
commit a01621dc1e

View File

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