Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mach_override.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile18
1 files changed, 18 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile
new file mode 100644
index 0000000..73676f0
--- /dev/null
+++ b/Rakefile
@@ -0,0 +1,18 @@
+desc 'Build'
+task :build do
+ system('pwd')
+ system('mkdir build')
+ system('gcc -o build/test_gcc_i386 -framework CoreServices *.c *.cp')
+end
+
+desc 'Test'
+task :test do
+ system('build/test_gcc_i386')
+end
+
+desc 'Clean up'
+task :clean do
+ system('rm -rf build')
+end
+
+task :default => [:build, :test] \ No newline at end of file