Re: [PATCH wayland 1/2] Makefile: use automake rule for compiling .S

2015-11-19 Thread Víctor M . Jáquez L .
On 11/18/15 at 01:07pm, Pekka Paalanen wrote: > From: Pekka Paalanen > > Automake seems to have its own rules for compiling an .o from an .S. > Essentially it does the same as our hand-crafted rule, but adds some > things like dependency file generation. > > Remove our hand-crafted rule to use t

Re: [PATCH wayland 1/2] Makefile: use automake rule for compiling .S

2015-11-18 Thread Peter Hutterer
On Wed, Nov 18, 2015 at 01:07:36PM +0200, Pekka Paalanen wrote: > From: Pekka Paalanen > > Automake seems to have its own rules for compiling an .o from an .S. > Essentially it does the same as our hand-crafted rule, but adds some > things like dependency file generation. > > Remove our hand-cra

[PATCH wayland 1/2] Makefile: use automake rule for compiling .S

2015-11-18 Thread Pekka Paalanen
From: Pekka Paalanen Automake seems to have its own rules for compiling an .o from an .S. Essentially it does the same as our hand-crafted rule, but adds some things like dependency file generation. Remove our hand-crafted rule to use the automake rule, it is less surprising. Signed-off-by: Pek