summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPekka Paalanen <pekka.paalanen@collabora.co.uk>2015-11-18 12:54:10 +0200
committerPekka Paalanen <pekka.paalanen@collabora.co.uk>2015-11-19 09:47:24 +0200
commit3dc7c2c84675483ca0a018ae8f66ebad5639a0bc (patch)
tree78ab402497ffeb5e9e25be544508fcb01135cf52
parentf66e2d53dd8920451a4d9544b2fd2568a6a75b9b (diff)
downloadwayland-3dc7c2c84675483ca0a018ae8f66ebad5639a0bc.tar.gz
Makefile: use automake rule for compiling .S
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. http://www.gnu.org/software/automake/manual/html_node/Assembly-Support.html Signed-off-by: Pekka Paalanen <pekka.paalanen@collabora.co.uk> Tested-by: Víctor Jáquez <vjaquez@igalia.com> Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
-rw-r--r--Makefile.am3
1 files changed, 0 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am
index 7d31a39..e850abc 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -30,9 +30,6 @@ pkgconfig_DATA += src/wayland-scanner.pc
src/dtddata.o: protocol/wayland.dtd
-%.o: %.S
- $(AM_V_GEN)$(CC) $(ASFLAGS) $(CPPFLAGS) $(TARGET_MACH) -c -o $@ $<
-
if USE_HOST_SCANNER
wayland_scanner = wayland-scanner
else