![](https://secure.gravatar.com/avatar/9e2504e0b74e5384af09ce8a660afac4.jpg?s=120&d=mm&r=g)
16 May
2019
16 May
'19
7:23 p.m.
On 16 May 2019, at 21:16, Hugo Ishimaru <privet.kitty99@gmail.com> wrote:
Hi.
Is it enough to begin the Makefile with `all' instead of `website'? Currently typing `make' leads to the deployment of docs.
The first target in a Makefile is the default target. So make the first target the one you want. It could be: default:all if you want to make this mechanism explicit ;-) Another option is to make help the default target, and expect an explicit target on the command line. -- __Pascal J. Bourguignon__