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:
authorrentzsch <jwr.git@redshed.net>2012-08-10 07:22:06 +0400
committerrentzsch <jwr.git@redshed.net>2012-08-10 07:26:33 +0400
commitbc77809297a3a200ad10b1ccabcd0d4ca409ae59 (patch)
tree2544b5bccb79f1d7aa37f0dc5b6c66856340db2a
parente63c22f3135086195919536947a66fb93a51a75a (diff)
Add basic (failing) Rake file for testing.
-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