tweak build targets

This commit is contained in:
Josh Holtrop 2014-06-10 20:43:17 -04:00
parent 4b159037c1
commit 3c348fe893
2 changed files with 9 additions and 3 deletions

View File

@ -1,5 +1,9 @@
.PHONY: default .PHONY: all
default: all:
@rake $@
.PHONY: library
library:
@rake $@ @rake $@
.PHONY: gui .PHONY: gui

View File

@ -47,7 +47,9 @@ task :test => :library do
system("./build/tests") system("./build/tests")
end end
task :default => [:library] task :default => :all
task :all => [:library, :gui]
task :clean do task :clean do
Rscons.clean Rscons.clean