add subarch asm support for PIC objects/shared libc

this rule was omitted in previous subarch asm commit
This commit is contained in:
Rich Felker 2013-08-11 03:49:16 -04:00
parent 7568ee4cbf
commit 804e994004
1 changed files with 3 additions and 0 deletions

View File

@ -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 $@ $<