Replace make with Rake
trottercashion.com
Replace make with Rake
1–7 of 7 posts
Re: Replace make with Rake
#2Re: Replace make with Rake
#3A common pattern lately is to use rebar with a very minimal makefile that just makes things like "make" and "make test" do the equivalent rebar actions so that people unfamiliar with it don't even notice.
Re: Replace make with Rake
#4For Erlang specifically, you should probably use rebar ( http://github.com/basho/rebar ). It is pretty much the best thing ever. A common pattern lately is to use rebar with a very minimal makefile that just makes things like "make" and "make test" do the equivalent rebar actions so that people unfamiliar with it don't even notice.
Re: Replace make with Rake
#5For Erlang specifically, you should probably use rebar ( http://github.com/basho/rebar ). It is pretty much the best thing ever. A common pattern lately is to use rebar with a very minimal makefile that just makes things like "make" and "make test" do the equivalent rebar actions so that people unfamiliar with it don't even notice.
Rebar definitely looks pretty cool. Is there any documentation for it other than this video ( http://vimeo.com/8311407 ) though?