From 804e9940049934215d2947c1068016cba852e560 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sun, 11 Aug 2013 03:49:16 -0400 Subject: add subarch asm support for PIC objects/shared libc this rule was omitted in previous subarch asm commit --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 7250e1e6..9206ca02 100644 --- a/Makefile +++ b/Makefile @@ -99,6 +99,9 @@ $(MEMOPS_SRCS:%.c=%.o) $(MEMOPS_SRCS:%.c=%.lo): CFLAGS += $(CFLAGS_MEMOPS) %.o: %.c $(GENH) $(IMPH) $(CC) $(CFLAGS_ALL_STATIC) -c -o $@ $< +%.lo: $(ARCH)$(ASMSUBARCH)/%.s + $(CC) $(CFLAGS_ALL_SHARED) -c -o $@ $< + %.lo: $(ARCH)/%.s $(CC) $(CFLAGS_ALL_SHARED) -c -o $@ $< -- cgit v1.2.1