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: 167402a213e2fb360a79c263459be9dbd678af9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
desc 'Build'
task :build do
  system('mkdir build')
  system('gcc -o build/test_gcc_i386 -framework CoreServices *.c *.cp libudis86/*.c')
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]