From 22aebf1bfefa2347a376acea5e27dab3f1d0e08f Mon Sep 17 00:00:00 2001 From: Mans Rullgard Date: Fri, 4 Mar 2011 19:41:33 +0000 Subject: Add rule for compiling to asm This allows commands of the form "make foo.s", which is useful for inspecting the compiler output for debugging purposes. Signed-off-by: Mans Rullgard Signed-off-by: Michael Niedermayer --- common.mak | 3 +++ 1 file changed, 3 insertions(+) (limited to 'common.mak') diff --git a/common.mak b/common.mak index 8dd24396d2..14c79f0e47 100644 --- a/common.mak +++ b/common.mak @@ -47,6 +47,9 @@ COMPILE_S = $(call COMPILE,AS) %.o: %.cpp $(COMPILE_CXX) +%.s: %.c + $(CC) $(CPPFLAGS) $(CFLAGS) -S -o $@ $< + %.o: %.S $(COMPILE_S) -- cgit v1.2.3