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

Rakefile - github.com/mumble-voip/mach_override.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 73676f018a12c71b8cfaa9b6045c3911e0403dcf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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]