From 3c348fe893c2219af00cf7a40824385f17a87267 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Tue, 10 Jun 2014 20:43:17 -0400 Subject: [PATCH] tweak build targets --- Makefile | 8 ++++++-- Rakefile.rb | 4 +++- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 7ee4333..1235e14 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,9 @@ -.PHONY: default -default: +.PHONY: all +all: + @rake $@ + +.PHONY: library +library: @rake $@ .PHONY: gui diff --git a/Rakefile.rb b/Rakefile.rb index 4693975..15df8a7 100644 --- a/Rakefile.rb +++ b/Rakefile.rb @@ -47,7 +47,9 @@ task :test => :library do system("./build/tests") end -task :default => [:library] +task :default => :all + +task :all => [:library, :gui] task :clean do Rscons.clean